Advertisement
RosenPP

02-PortFolio

Feb 12th, 2025
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.81 KB | Source Code | 0 0
  1. @media (width<=600px) {
  2.     .checkbtn{
  3.         display: block;
  4.         order: 2;
  5.     }
  6.     nav ul{
  7.         display: none;
  8.     }
  9.  
  10.     #check:checked ~ ul{
  11.         display: block;
  12.         width: 30%;
  13.         border-radius: 0.3rem;
  14.         text-align: center;
  15.         position: absolute;
  16.         top: 150px;
  17.         right: 20px;
  18.         background-color: #38cccc;
  19.     }
  20.     .site-header{
  21.         display: flex;
  22.         flex-direction: column;
  23.    
  24.     }
  25.     .site-header > i{
  26.         left: 0px;
  27.     }
  28.     .about{
  29.         display: flex;
  30.         flex-direction: row;
  31.         justify-content: center;
  32.         align-items: center;
  33.     }
  34.     .about-header{
  35.        position: revert;
  36.     }
  37.     .gallery{
  38.         display: flex;
  39.         flex-wrap: wrap;
  40.         justify-content: center;
  41.    
  42.     }
  43.  
  44. }
Tags: 02-PortFolio
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement