style.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /* Andrey Shevchenko. FEA-23. Home work 4 */
  2. * {
  3. box-sizing: border-box;
  4. }
  5. body {
  6. font-family: 'Roboto', sans-serif;
  7. background-color: #000;
  8. padding: 0px;
  9. margin: 0;
  10. }
  11. .headerclass {
  12. padding: 62px;
  13. display: flex;
  14. flex-direction: row;
  15. flex-wrap: nowrap;
  16. align-items: center;
  17. justify-content: space-between;
  18. color: #fff;
  19. font-size: 14px;
  20. font-weight: 500;
  21. }
  22. .headerclass > :nth-child(-n + 2) {
  23. margin-right: 20px;
  24. }
  25. .headerclass a {
  26. color: #fff;
  27. text-decoration: none;
  28. }
  29. .headerclass a:hover {
  30. text-decoration: underline;
  31. }
  32. .navclass {
  33. color: #fff;
  34. display: flex;
  35. flex-direction: row;
  36. flex-wrap: nowrap;
  37. justify-content: space-between;
  38. min-width: 400px;
  39. max-width: 550px;
  40. flex-grow: 1;
  41. margin-right: -20px;
  42. }
  43. .navclass > :last-child {
  44. color: rgba(255, 202, 0, 1);
  45. width: 120px;
  46. }
  47. .heademail {
  48. font-size: 16px;
  49. }
  50. .emeilmenu {
  51. display: flex;
  52. justify-content: space-between;
  53. max-width: 420px;
  54. flex-grow: 1;
  55. }
  56. .headmenu {
  57. display: flex;
  58. flex-direction: row;
  59. flex-wrap: nowrap;
  60. align-items: center;
  61. margin-left: 25px;
  62. }
  63. .poloski {
  64. width: 50px;
  65. height: 12px;
  66. border-top: #fff solid 1px;
  67. border-bottom: #fff solid 1px;
  68. margin-left: 25px;
  69. }