Advertisement
Guest User

Untitled

a guest
Apr 28th, 2017
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.99 KB | None | 0 0
  1. /*
  2. Orange color: #e67e22
  3. /*
  4.  
  5. /* --------------------------------------------------*/
  6. /* BASIC SETUP */
  7. /* --------------------------------------------------*/
  8.  
  9. * {
  10.     margin: 0;
  11.     padding: 0;
  12.     box-sizing: border-box;
  13. }
  14.  
  15. html {
  16.     background-color: #222;
  17.     color: #555;
  18.     font-family: 'Lato', 'Arial' , sans-serif;
  19.     font-weight: 300;
  20.     font-size: 20px;
  21.     text-rendering: optimizeLegibility;
  22. }
  23.  
  24.  
  25. /* --------------------------------------------------*/
  26. /* REUSABLE COMPONENTS */
  27. /* --------------------------------------------------*/
  28.  
  29.  
  30. .row {
  31.     max-width: 1140px;
  32.     margin-left: 2%;
  33. }
  34.  
  35.  
  36. /* ------ HEADINGS ------ */
  37. h1 {
  38.     margin-top: 0;
  39.     margin-bottom: 20px;
  40.     color: #fff;
  41.     font-size: 240%;
  42.     font-weight: 300;
  43.     text-transform: uppercase;
  44.     letter-spacing: 1px;
  45.     word-spacing: 4px;
  46. }
  47.  
  48. .btn:link,
  49. .btn:visited {
  50.     display: inline-block;
  51.     padding: 10px 30px;
  52.     font-weight: 300;
  53.     text-decoration: none;
  54.     border-radius: 200px;
  55.     transition: background-color 0.2s, border 0.2s, color 0.2s;    
  56. }
  57.  
  58.  
  59.  
  60.  
  61. /* ------ BUTTONS ------ */
  62. .btn-full:link,
  63. .btn-full:visited {
  64.     background-color: #e67e22;
  65.     border: 1px solid #e67e22;
  66.     color: #fff;
  67.     margin-right: 15px;
  68. }
  69.  
  70. .btn-ghost:link,
  71. .btn-ghost:visited {
  72.     border: 1px solid #e67e22;
  73.     color: #e67e22;
  74. }
  75.  
  76. .btn:hover,
  77. .btn:active {
  78.     background-color: #cf6d17;
  79. }
  80.  
  81. .btn-full:hover,
  82. .btn-full:active {
  83.     border: 1px solid #cf6d17;
  84.     background-color: #e67e22;
  85. }
  86.  
  87. .btn-ghost:hover,
  88. .btn-ghost:active {
  89.     border: 1px solid #cf6d17;
  90.     color: #fff;
  91. }
  92.  
  93. header {
  94.     background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(https://s-media-cache-ak0.pinimg.com/originals/e0/24/74/e02474753169d662ae9cad0ebc1817d5.jpg);
  95.     height: 100vh;
  96.     z-index: -1;
  97. }
  98.  
  99. .hero-text-box {
  100.     width: 1140px;
  101.     margin: 2%;
  102.  
  103. }
  104.  
  105. .logo {
  106.     height: 100px;
  107.     width: auto;
  108.     float: left;
  109.     margin-top: 20px;
  110. }
  111.  
  112. .main-nav {
  113.     float: right;
  114.     list-style: none;
  115.     margin-top: 55px;
  116.  
  117. }
  118.  
  119. .main-nav li {
  120.     display: inline-block;
  121.     margin-left: 40px;
  122. }
  123.  
  124. .main-nav li a:link,
  125. .main-nav li a:visited {
  126.     padding: 8px 0;
  127.     color: #fff;
  128.     text-decoration: none;
  129.     text-transform: uppercase;
  130.     font-size: 90%;
  131.     border-bottom: 2px solid transparent;
  132.     transition: border-bottom 0.2s;
  133. }
  134.  
  135. .main-nav li a:hover,
  136. .main-nav li a:active {
  137.     border-bottom: 2px solid #e67e22;
  138. }
  139.  
  140. .section-features {
  141.   color: #eeeeee;
  142. }
  143.  
  144. /*  SECTIONS  ============================================================================= */
  145.  
  146. .section {
  147.     clear: both;
  148.     padding: 0px;
  149.     margin: 0px;
  150. }
  151.  
  152. /*  GROUPING  ============================================================================= */
  153.  
  154. .row {
  155.     zoom: 1; /* For IE 6/7 (trigger hasLayout) */
  156. }
  157.  
  158. .row:before,
  159. .row:after {
  160.     content:"";
  161.     display:table;
  162. }
  163. .row:after {
  164.     clear:both;
  165. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement