Quellcode durchsuchen

Merge branch 'master' of maryluis/teamWork into master

Natarov vor 4 Jahren
Ursprung
Commit
c38e795509
2 geänderte Dateien mit 36 neuen und 8 gelöschten Zeilen
  1. 33 2
      css/style.css
  2. 3 6
      index.html

+ 33 - 2
css/style.css

@@ -77,6 +77,7 @@ li {
     transform: rotate(30deg);
 }
 .header-bottom {
+    padding: 0% 10%;
     width: 100%;
     height: 80px;
     background: #0F0F0F;
@@ -87,11 +88,11 @@ li {
     display: flex;
     justify-content: center;
     align-items: center;
-    width: 50%;
+    /* width: 50%; */
     padding-right: 150px;
 }
 .header-bottom__nav {
-    width: 50%;
+    /* width: 50%; */
     display: flex;
     justify-content: flex-start;
     align-items: center;
@@ -124,6 +125,36 @@ li {
 .header-bottom__nav__list li:hover a {
     color: #fff;
 }
+.header_menu {
+    display: none;
+}
+@media screen and (max-width: 1050px) {
+    .header-bottom__nav__list {
+        font-size: 12px;
+        display: flex;
+        flex-direction: column;
+    }
+    .header-bottom__nav__list li {
+        padding: 2px;
+    }
+
+}
+@media screen and (max-width: 700px) {
+    .header-top__contacts__list li:last-of-type {
+        display: none;
+    }
+}
+@media screen and (max-width: 650px) {
+    .header-bottom__logo {
+        padding: 0%;
+    }
+    .header-top__contacts__list li:nth-last-child(2) {
+        display: none;
+    }
+    .header-bottom__nav__list {
+        display: none;
+    }
+}
 .main {
     max-width: 1920px;
 }

Datei-Diff unterdrückt, da er zu groß ist
+ 3 - 6
index.html