Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.70 KB | None | 0 0
  1. //out: style.css, sourcemap: true, compress: false
  2. @desktop: ~"screen and (min width: 768px) and (max-width: 1200px)";
  3. @tablet: ~"screen and (max-width: 768px) and (min-width: 480px)";
  4. @mobile: ~"screen and (max-width: 480px)";
  5.  
  6. .main
  7. {
  8.   max-width: 1200px;
  9.   width: 100%;
  10.   margin: 0 auto;
  11. }
  12.  
  13. .clearfix
  14. {
  15.   clear: both;
  16. }
  17. .navbar
  18. {
  19.   background: #1f2937;
  20.   width: 100%;
  21.   height: 50px;
  22.   line-height: 50px;
  23. }
  24. .nav-logo
  25. {
  26.   float: left;
  27.   padding: 0 20px;
  28.   height: 50px;
  29.   img
  30.   {
  31.     max-width: 100%;
  32.     height: 100%;
  33.     display: block;
  34.   }
  35. }
  36. .nav-content
  37. {
  38.   list-style: none;
  39.   float: right;
  40.   padding-right: 10%;
  41.  
  42.   li
  43.   {
  44.     display: inline-block;
  45.     &:hover
  46.     {
  47.       color: #fff;
  48.       opacity: 0.2;
  49.       transition-duration: 0.5s;
  50.     }
  51.     a
  52.     {
  53.       text-decoration: none;
  54.       color: #dee4ec;
  55.       font-size: 20px;
  56.       padding: 0px 10px;
  57.     }
  58.   }
  59. }
  60. header
  61. {
  62.   height: 300px;
  63.   text-align: center;
  64.   font-size: 30px;
  65.   color: black;
  66.   background: #617da5;
  67.   width: 100%;
  68. }
  69. .services
  70. {
  71.   background: #dee4ec;
  72. }
  73. .services-wrapper
  74. {
  75.   width: 50%;
  76.   float: left;
  77.   text-align: center;
  78.   padding: 100px 0px;
  79. }
  80. .services-content
  81. {
  82.   padding: 0 15px;
  83.   h1
  84.   {
  85.     font-size: 20px;
  86.     padding: 15px;
  87.   }
  88.   p
  89.   {
  90.     font-size: 18px;
  91.   }
  92.   img
  93.   {
  94.     max-width: 100%;
  95.     height: 100%;
  96.     display: block;
  97.   }
  98. }
  99. .foot
  100. {
  101.   width: 100%;
  102.   background: #11161e;
  103.   height: auto;
  104.   clear: both;
  105. }
  106. .text-footer
  107. {
  108.   padding: 20px 20px;
  109.   float: left;
  110.   a
  111.   {
  112.     color: #ffffff;
  113.     text-decoration: underline;
  114.     padding: 0px 5px;
  115.     font-size: 13px;
  116.   }
  117. }
  118. .media-icons
  119. {
  120.   float: right;
  121.   a
  122.   {
  123.  
  124.   }
  125. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement