Header.css 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. body {
  2. margin: 0;
  3. }
  4. nav {
  5. display: flex;
  6. margin-bottom: 30px;
  7. padding: 5px;
  8. background: linear-gradient(#a088bd, #c7a9aa);
  9. }
  10. .img_logo {
  11. width: 100px;
  12. margin-right: 1035px;
  13. border: 1.5px solid rgb(72, 70, 75);
  14. margin-top: 10px;
  15. margin-left: 15px;
  16. }
  17. .img_logo:hover {
  18. border: 1.5px solid rgb(231, 224, 224);
  19. width: 99px;
  20. }
  21. .logaut a {
  22. color: rgb(23, 6, 39);
  23. text-decoration: none;
  24. font-size: 20px;
  25. }
  26. .logaut button {
  27. position: relative;
  28. display: inline-block;
  29. width: 6.5em;
  30. height: 2.5em;
  31. cursor: pointer;
  32. margin-top: 7px;
  33. margin-bottom: 5px;
  34. vertical-align: middle;
  35. font-weight: 550;
  36. text-align: center;
  37. text-decoration: none;
  38. user-select: none;
  39. color: rgb(41, 14, 66);
  40. outline: none;
  41. border: 1px solid rgba(110, 121, 128, 0.8);
  42. border-top-color: rgba(0, 0, 0, 0.3);
  43. border-radius: 5px;
  44. background: rgb(206, 220, 231) linear-gradient(rgb(206, 220, 231), rgb(106, 70, 148));
  45. box-shadow: 0 -1px rgba(10, 21, 28, 0.9) inset, 0 1px rgba(255, 255, 255, 0.5) inset;
  46. }
  47. .logaut button:hover {
  48. background: linear-gradient(#baa7cc, #9285b4);
  49. }
  50. .avatar {
  51. margin-top: 25px;
  52. margin-right: 10px;
  53. width: 70px;
  54. height: 70px;
  55. }
  56. .button_search {
  57. cursor: pointer;
  58. margin-top: 50px;
  59. margin-right: 10px;
  60. position: relative;
  61. display: inline-block;
  62. width: 6.5em;
  63. height: 2.5em;
  64. margin-bottom: 5px;
  65. vertical-align: middle;
  66. font-weight: 550;
  67. text-align: center;
  68. text-decoration: none;
  69. user-select: none;
  70. color: rgb(41, 14, 66);
  71. outline: none;
  72. border: 1px solid rgba(110, 121, 128, 0.8);
  73. border-top-color: rgba(0, 0, 0, 0.3);
  74. border-radius: 5px;
  75. background: rgb(206, 220, 231) linear-gradient(rgb(206, 220, 231), rgb(106, 70, 148));
  76. box-shadow: 0 -1px rgba(10, 21, 28, 0.9) inset, 0 1px rgba(255, 255, 255, 0.5) inset;
  77. }
  78. .button_search:hover {
  79. background: linear-gradient(#baa7cc, #9285b4);
  80. }