style.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. *,
  2. *::before,
  3. *::after {
  4. box-sizing: border-box;
  5. }
  6. body {
  7. font-size: 13px;
  8. font-family: "Open Sans", sans-serif;
  9. }
  10. a {
  11. color: black;
  12. text-decoration: none;
  13. }
  14. .container {
  15. padding: 0 190px;
  16. width: 100%;
  17. }
  18. .header-background {
  19. background: #4cb1ca;
  20. padding: 17px 0;
  21. }
  22. .header-login {
  23. display: flex;
  24. justify-content: space-between;
  25. align-items: center;
  26. }
  27. .language-currency > span {
  28. opacity: 0.8;
  29. color: white;
  30. padding-right: 5px;
  31. }
  32. #language,
  33. #currency {
  34. background: #4cb1ca;
  35. border: none;
  36. color: white;
  37. font-family: "Open Sans", sans-serif;
  38. cursor: pointer;
  39. }
  40. #language {
  41. margin-right: 20px;
  42. position: relative;
  43. }
  44. #language > li:last-child {
  45. position: absolute;
  46. display: none;
  47. margin-top: 5px;
  48. }
  49. .list-login > li {
  50. display: inline;
  51. }
  52. .list-login > li > a {
  53. color: white;
  54. }
  55. .list-login > li > a:hover {
  56. color: #000000;
  57. transition: all 0.5s;
  58. }
  59. .list-login > li:not(:last-child) {
  60. border-right: 1px solid white;
  61. padding: 0 15px;
  62. }
  63. .list-login > li:last-child {
  64. padding-left: 15px;
  65. }
  66. .logo-menu {
  67. font-size: 14px;
  68. padding: 40px 0;
  69. font-weight: bold;
  70. text-transform: uppercase;
  71. display: flex;
  72. justify-content: space-between;
  73. align-items: center;
  74. }
  75. .title {
  76. font-size: 36px;
  77. }
  78. .menu > li {
  79. display: inline;
  80. }
  81. .menu > li:not(:first-child) {
  82. padding-left: 25px;
  83. }
  84. #search {
  85. padding: 10px 115px 10px 10px;
  86. font-size: 13px;
  87. border: 1px solid #c6c6c6;
  88. }