andrelievable

Untitled

Oct 12th, 2022
1,262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.07 KB | None | 0 0
  1.  
  2. @media (max-width: 1100px) and (min-width: 1000px) {
  3.     header, footer{
  4.         color:red;
  5.     }
  6.  
  7. }
  8.  
  9. @media (max-width: 1000px) and (min-width: 800px) {
  10.     header, footer{
  11.         color:rgb(0, 0, 0);
  12.     }
  13.  
  14.     #links{
  15.         width:100%;
  16.     }
  17.  
  18.     ul{
  19.         display: flex;
  20.     }
  21.  
  22.     li{
  23.         margin-block: 1%;
  24.         margin-inline: 5%;
  25.     }
  26.  
  27. }
  28.  
  29. @media (max-width: 800px) and (min-width: 500px) {
  30.     header, footer{
  31.         color:rgb(0, 0, 0);
  32.     }
  33.  
  34.     #links{
  35.         width:100%;
  36.         background-color:transparent
  37.     }
  38.  
  39.     ul{
  40.         display: flex;
  41.         flex-direction: column;
  42.     }
  43.  
  44.     li{
  45.         margin-block: 1%;
  46.         background-color: grey;
  47.         text-align: center;
  48.     }
  49.  
  50.     #wrapper{
  51.         height: fit-content;
  52.     }
  53.  
  54. }
  55.  
  56. @media (max-width: 500px) {
  57.     header, footer{
  58.         color:rgb(0, 0, 0);
  59.     }
  60.  
  61.     #links{
  62.         width:100%;
  63.         background-color:transparent;
  64.     }
  65.  
  66.     ul{
  67.         display: flex;
  68.         flex-direction: column;
  69.     }
  70.  
  71.     li{
  72.         margin-block: 1%;
  73.         background-color: grey;
  74.         text-align: center;
  75.     }
  76.  
  77.     #wrapper{
  78.         height: fit-content;
  79.         width:100%;
  80.     }
  81.    
  82.     body{
  83.         display: flex;
  84.         flex-direction: column;
  85.     }
  86.     #image{
  87.         width:100%;
  88.     }
  89.  
  90. }
Advertisement
Add Comment
Please, Sign In to add comment