Header.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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,.8);
  42. border-top-color: rgba(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:
  46. 0 -1px rgba(10,21,28,.9) inset,
  47. 0 1px rgba(255,255,255,.5) inset;
  48. }
  49. .logaut button:hover {
  50. background: linear-gradient(#baa7cc, #9285b4);
  51. }
  52. .avatar {
  53. margin-top: 25px;
  54. margin-right: 10px;
  55. width: 70px;
  56. height: 70px;
  57. }
  58. .button_search {
  59. cursor: pointer;
  60. margin-top: 50px;
  61. margin-right: 10px;
  62. position: relative;
  63. display: inline-block;
  64. width: 6.5em;
  65. height: 2.5em;
  66. margin-bottom: 5px;
  67. vertical-align: middle;
  68. font-weight: 550;
  69. text-align: center;
  70. text-decoration: none;
  71. user-select: none;
  72. color: rgb(41, 14, 66);
  73. outline: none;
  74. border: 1px solid rgba(110,121,128,.8);
  75. border-top-color: rgba(0,0,0,.3);
  76. border-radius: 5px;
  77. background: rgb(206, 220, 231) linear-gradient(rgb(206,220,231), rgb(106, 70, 148));
  78. box-shadow:
  79. 0 -1px rgba(10,21,28,.9) inset,
  80. 0 1px rgba(255,255,255,.5) inset;
  81. }
  82. .button_search:hover {
  83. background: linear-gradient(#baa7cc, #9285b4);
  84. }