Advertisement
Guest User

Untitled

a guest
Nov 14th, 2020
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.19 KB | None | 0 0
  1. .blockTitle{
  2.     color: white;
  3.   }
  4.   .wrapper{
  5.     .container{
  6.       width: 100%;
  7.       margin: 0;
  8.       header{
  9.         display: flex;
  10.         flex-wrap: wrap;
  11.         justify-content: space-between;
  12.         .menu-container{
  13.           display: block;
  14.         }
  15.         .info{
  16.           width: 100%;
  17.           order: 3;
  18.           .big{
  19.             font-size: 12px;
  20.             text-align: center;
  21.           }
  22.           .small{
  23.             font-size: 10px;
  24.             text-align: center;
  25.           }
  26.           p{
  27.             display: block;
  28.             margin-bottom: 3%;
  29.             text-align: center;
  30.             font-size: 15px;
  31.           }
  32.         }
  33.         .logo{
  34.           order: 1;
  35.           width: 40%;
  36.            height: 80%;
  37.            img{
  38.             width: 100%;
  39.             height: 100%;
  40.            }
  41.          
  42.         }
  43.         .flag{
  44.           width: 40%;
  45.           order: 2;
  46.           img{
  47.             width: 100%;
  48.             height: 100%;
  49.            }
  50.        
  51.         }
  52.       }
  53.       .content-wrapper{
  54.         #sidebar{
  55.           display: none;
  56.           position: absolute;
  57.           top: 50px;
  58.           left: 0;
  59.           width: 100%;
  60.           &.active {
  61.             display: block;
  62.           }
  63.         }
  64.         #content{
  65.           width: 100%;
  66.           margin: 0;
  67.           padding: 0;
  68.           .slider{
  69.             width: 90%;
  70.             .slick-dots { left: 65%; width: 80px; }
  71.            
  72.           }
  73.           .ataman_wrapper{
  74.             #questionTitle{
  75.               padding: 0;
  76.               width: 90%;
  77.               color: white;
  78.             }
  79.             .questions .answer .attachments .attachment img{
  80.               display: block;
  81.               width: 90%;
  82.               margin: 0 auto;
  83.             }
  84.           }
  85.           .article{
  86.             width: 95%;
  87.             h1{
  88.               font-size: 1em;
  89.             }
  90.             .attachments{
  91.             .attachment{
  92.               margin: 4% auto;
  93.             }
  94.           }
  95.           }
  96.         }
  97.       }
  98.     }
  99.     footer{
  100.       height: 100%;
  101.       width: 100%;
  102.       border-radius: 0px;
  103.       h1{
  104.         font-size: 10px;
  105.       }
  106.     }
  107.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement