Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.97 KB | None | 0 0
  1. /* Color Pallet Ref
  2.  
  3. #A8A7A7 - Light Grey
  4. #CC527A - Dark Pink
  5. #E8175D - Neon Pink
  6. #474747 - Grey
  7. #363636 - Charcoal
  8.  
  9. */
  10.  
  11.  
  12. /* Base Styles *************************
  13. **************************************/
  14.  
  15. @font-face {
  16. font-family: 'Streamster';
  17. src: url('../fonts/Streamster.ttf') format('truetype');
  18.  
  19. font-family: 'VHS';
  20. src: url('../fonts/VCR_OSD_MONO_1.001.ttf') format('truetype');
  21. }
  22.  
  23. body {
  24. margin: 0;
  25. color: #fff;
  26. font: 1em/1.5 "Helvetica Nueue", Helvetica, Arial, sans-serif;
  27. background-color: rgb(110, 53, 96);
  28. }
  29.  
  30. h1 {
  31. font-size: 5.625rem;
  32. line-height: 1.5;
  33. font-weight: normal;
  34. margin: 12px;
  35. }
  36.  
  37. h2 {
  38. font-size: 1.75em;
  39. color: #CC527A;
  40. }
  41.  
  42. footer {
  43. /* color: #E8175D; */
  44. color: rgb(255, 152, 243);
  45. text-shadow: 0 0 rgb(255, 97, 237);
  46. text-shadow: 0 0 20px rgb(255, 0, 181);
  47. font-size: 4.5em;
  48. background: linear-gradient(transparent 10%, rgb(72, 52, 77));
  49. }
  50.  
  51. /* Main Styles ************************
  52. **************************************/
  53.  
  54.  
  55. ul.topnav {
  56. list-style-type: none;
  57. margin: 0;
  58. padding: 0;
  59. overflow: hidden;
  60. background-color: #333;
  61. }
  62.  
  63. ul.topnav li {float: left;}
  64.  
  65. ul.topnav li a {
  66. display: inline-block;
  67. color: #f2f2f2;
  68. text-align: center;
  69. padding: 14px 16px;
  70. text-decoration: none;
  71. transition: 0.3s;
  72. font-size: 17px;
  73. }
  74.  
  75. ul.topnav li a:hover {background-color: #555;}
  76.  
  77. ul.topnav li.icon {display: none;}
  78.  
  79. .title {
  80. font-size: 1.625rem;
  81. font-weight: 200;
  82. text-shadow: 0 -4px rgba(255, 255, 255, 0.07),
  83. -2px 0 0.2px rgb(252, 23, 118),
  84. 1px -1px 0.2px rgb(143, 58, 245);
  85. }
  86.  
  87. .main-header {
  88. padding-top: 170px;
  89. height: 400px;
  90. font-family: 'VHS', "Helvetica Nueue", Helvetica, Arial, sans-serif;
  91. color: #FFF;
  92. text-shadow: 0 -8px rgba(255, 255, 255, 0.03),
  93. -2px 0 0.2px rgb(252, 23, 118),
  94. 1px -2px 0.2px rgb(120, 58, 245);
  95. background: linear-gradient(rgb(143, 58, 245), transparent 90%),
  96. linear-gradient(0deg, rgb(110, 53, 96), transparent),
  97. url('../img/NeonRoomsWallpaperA.jpg') no-repeat center;
  98. background-size: cover;
  99. }
  100.  
  101. /*.main-header h1 {
  102. margin: 0;
  103. padding-top: 40px;
  104. padding-bottom:io9yu 50px;
  105. background: linear-gradient(transparent 15%, #000, transparent 90%)
  106. }*/
  107.  
  108. .intro {
  109. font-size: 1.25em;
  110. }
  111.  
  112. .primary-content,
  113. .main-header,
  114. .main-footer {
  115. text-align: center;
  116. }
  117.  
  118. .primary-content {
  119. padding-top: 25px;
  120. padding-bottom: 95px;
  121. }
  122.  
  123. .main-footer {
  124. margin-top: 40px;
  125. border-bottom: 10px solid #CC527A;
  126. font-family: 'Streamster', "Helvetica Nueue", Helvetica, Arial, sans-serif;
  127. }
  128.  
  129. /* Layout Styles *************************
  130. **************************************/
  131.  
  132. .primary-content {
  133. max-width: 45%;
  134. min-width: 45%;
  135. padding-left: 27.5%;
  136. padding-right: 27.5%;
  137. margin: auto;
  138. }
  139.  
  140. a {
  141. text-decoration: none;
  142. }
  143.  
  144. a:link {
  145. color: rgb(253, 109, 90);
  146. }
  147.  
  148. a:visited {
  149. color: #c43b69;
  150. }
  151.  
  152. a:hover {
  153. color: rgb(252, 23, 118);
  154. }
  155.  
  156. a:active {
  157. color: firebrick;
  158. }
  159.  
  160. /* DRY */
  161.  
  162. .rnd {
  163. border-radius: .5em;
  164. }
  165.  
  166. .content {
  167. display: block;
  168. text-align: center;
  169. margin: 40px 0 20px;
  170. padding: 10px 2px;
  171. background: #363636;
  172. box-shadow: inset 3px 10px 25px #474747;
  173.  
  174. }
  175.  
  176. .content h2 {
  177. border-bottom: 2px solid white;
  178. padding-bottom: 15px;
  179. margin-bottom: 10px;
  180. }
  181.  
  182. .content img {
  183. margin: 0;
  184. max-width: 95%;
  185. }
  186.  
  187. .content a {
  188. color: white;
  189. }
  190.  
  191. /* Floatin */
  192.  
  193. .content:hover {
  194. background-color: #424242;
  195. }
  196.  
  197. /* Media Queries */
  198.  
  199. @media screen and (max-width:680px) {
  200. ul.topnav li:not(:first-child) {display: none;}
  201. ul.topnav li.icon {
  202. float: right;
  203. display: inline-block;
  204. }
  205. }
  206.  
  207. @media screen and (max-width:680px) {
  208. ul.topnav.responsive {position: relative;}
  209. ul.topnav.responsive li.icon {
  210. position: absolute;
  211. right: 0;
  212. top: 0;
  213. }
  214. ul.topnav.responsive li {
  215. float: none;
  216. display: inline;
  217. }
  218. ul.topnav.responsive li a {
  219. display: block;
  220. text-align: left;
  221. }
  222. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement