Advertisement
Guest User

Untitled

a guest
Oct 21st, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.57 KB | None | 0 0
  1. /*Fade in effect & one pager AFBLIJVEN*/
  2. .fullpage-wrapper {
  3. width: 100%!important;
  4. transform: none!important;
  5. }
  6.  
  7. .fp-section {
  8. width: 100%!important;
  9. position: absolute;
  10. left: 0;
  11. top: 0;
  12. visibility: hidden;
  13. opacity: 0;
  14. z-index: 0;
  15. transition: all .7s ease-in-out;
  16. }
  17.  
  18. .fp-section.active {
  19. visibility: visible;
  20. opacity: 1;
  21. z-index: 1;
  22. }
  23.  
  24. /*CSS Variables*/
  25. :root {
  26. --pink: #FF6C89;
  27. --grey: #838282;
  28. --white: #FFFFFF;
  29.  
  30. --light: 300;
  31. --medium: 500;
  32. --semibold: 600;
  33.  
  34. --psize: 1.3em;
  35. --h1size: 2.2em;
  36. --h2size: 1.3em;
  37. --asize: 1.3em;
  38.  
  39. --lineheight: 37px;
  40.  
  41. --gradient: linear-gradient(-90deg, #FF9A8B 0%, #FF6A88 50%, #FF99AC 100%);
  42. }
  43.  
  44. body {
  45. font-family: 'Poppins', sans-serif;
  46. font-size: 14px; /*20px*/
  47. line-height: var(--lineheight);
  48. /*
  49. font-weight: 300; - Light
  50. font-weight: 500; - Medium
  51. font-weight: 600; - SemiBold
  52. */
  53. /* Heading teksten medium*/
  54. /* Actieve navs zijn Semibold*/
  55. }
  56.  
  57. /*
  58. Kleuren
  59. Container BG kleur: #FFFFFF wit
  60. Wrapper BG kleur #F2F2F2 grijswit
  61. Font accent kleur #FF6C89 pink
  62. Tekst kleur #868686 donkergrijs (geen zwart...)
  63.  
  64. */
  65. a {
  66. text-decoration: none;
  67. }
  68. #section0 {
  69. background-image: url(../img/1/bol.svg), url(../img/1/vlekBG.svg);
  70. background-position: 0vw bottom, 42.5vw;
  71. background-repeat: no-repeat;
  72. background-size: auto, 1500px;
  73. }
  74.  
  75. .wrapper {
  76. position: absolute;
  77. top: 50%;
  78. left: 50%;
  79. height: 85%;
  80. width: 85%;
  81. transform: translate(-50%,-50%);
  82. background: #F1F1F1;
  83. box-shadow: 0 0 90px 0 rgba(0,0,0,0.45);
  84. border-radius: 15px;
  85. background-image: url(../img/1/vlek.svg);
  86. background-position: 35vw;
  87. background-repeat: no-repeat;
  88. background-size: 1500px;
  89. display: -ms-grid;
  90. display: grid;
  91. -ms-grid-columns: (1fr)[2];
  92. grid-template-columns: repeat(2, 1fr);
  93. grid-gap: 1em;
  94. grid-auto-rows: 20% 75%;
  95. }
  96.  
  97. .navleft, .navright, .wrappertekst, .wrapperafbeelding{
  98. padding: 40px 90px;
  99. border-radius: 15px;
  100. }
  101. .navleft{
  102. grid-row: 1/2;
  103. /*background-color: rgba(96, 23, 212, 0.15);*/
  104. grid-column: 1/2;
  105.  
  106. }
  107. .navright {
  108. grid-row: 1/2;
  109. /*background-color: rgba(255, 250, 23, 0.15);*/
  110. grid-column: 2/2;
  111. text-align: justify;
  112. }
  113. .navright:after {
  114. content: '';
  115. display: inline-block;
  116. width: 100%;
  117. }
  118. .wrappertekst {
  119. /*background-color: rgba(255, 0, 0, 0.15);*/
  120. grid-row: 2/3;
  121. grid-column: 1/2;
  122. }
  123. #section0 .wrapperafbeelding {
  124. /*background-color: rgba(150, 34, 230, 0.15);*/
  125. grid-row: 2/3;
  126. grid-column: 2/2;
  127.  
  128. background-image: url(../img/1/runner.png);
  129. background-position: center;
  130. background-repeat: no-repeat;
  131. background-size: 75%;
  132. }
  133. navleft > a {color: var(--pink);}
  134. .navright > a {color: var(--white);}
  135. /*
  136. EINDE SECTIE 1
  137. /*/
  138.  
  139.  
  140.  
  141.  
  142.  
  143. /*
  144. START SECTIE 2
  145. /*/
  146. #section1 {
  147. background-image: url(../img/2/vlekBG.svg), url(../img/2/bol.svg);
  148. background-position: -57vw bottom, 71vw bottom;
  149. background-repeat: no-repeat;
  150. background-size: 1500px, 565px;
  151. }
  152.  
  153. #section1 .wrapperafbeelding {
  154. background-image: url(../img/2/Profile.png);
  155. }
  156.  
  157. #section1 .wrapper {
  158. background-image: url(../img/2/vlek.svg);
  159. }
  160. /*
  161. EINDE SECTIE 2
  162. /*/
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169. /*
  170. START SECTIE 3
  171. /*/
  172. #section2 {
  173. background-image: url(../img/3/bol.svg), url(../img/3/vlek.svg);
  174. background-position: 0vw bottom, 81vw bottom;
  175. background-repeat: no-repeat;
  176. background-size: 880px, 335px;
  177. }
  178.  
  179. #section2 .wrapperafbeelding {
  180. background-image: url(../img/3/dude.png);
  181. }
  182.  
  183. #section2 .wrapper {
  184. background-image: url(../img/3/vlek-container.svg);
  185. }
  186. /*
  187. EINDE SECTIE 3
  188. /*/
  189.  
  190. nav > a {
  191. color: var(--pink);
  192. font-size: var(--asize);
  193. font-weight: var(--medium);
  194. }
  195. nav > a > img {
  196. vertical-align: middle;
  197. padding-right: 10px;
  198. }
  199. .navright a {
  200. display: inline-block;
  201. vertical-align: middle;
  202. }
  203.  
  204.  
  205. h1 {
  206. font-weight: var(--medium);
  207. color: var(--pink);
  208. font-size: var(--h1size);
  209. margin-top: 10px;
  210. margin-bottom: 35px;
  211. }
  212. h2 {
  213. font-weight: var(--light);
  214. color: var(--pink);
  215. font-size: var(--h2size);
  216. }
  217. p {
  218. color: var(--grey);
  219. font-size: var(--psize);
  220. font-weight: var(--medium);
  221. }
  222.  
  223. .mail {
  224. margin-top: 30px;
  225. width: 110%;
  226. box-shadow: 0 20px 50px 0 rgba(0,0,0,0.45);
  227. }
  228. input[type="email"] {
  229. width: 70%;
  230. float: left;
  231. height: 53px;
  232. border-radius: 50px;
  233. background: #FFFFFF;
  234. outline: none;
  235. border: none;
  236. text-align: center;
  237. font-size: var(--psize);
  238. color: var(--grey);
  239. font-weight: var(--medium);
  240. }
  241.  
  242. button {
  243. margin-left: -10%;
  244. height: 55px;
  245. width: 25%;
  246. float: left;
  247. border-radius: 50px;
  248. background-image: var(--gradient);
  249. border: none;
  250. font-size: var(--psize);
  251. font-weight: var(--medium);
  252. color: var(--white);
  253. }
  254.  
  255. input[type="email"]:invalid {
  256. transition: .3s;
  257. }
  258.  
  259. input[type="email"]:valid {
  260. transition: .3s;
  261. }
  262.  
  263.  
  264. /* countdown timer */
  265.  
  266. .container {
  267. width: 110%;
  268. /*background-color: rgba(150, 34, 230, 0.15);*/
  269. text-align: center;
  270. }
  271. .container .content > div {
  272. display: inline-block;
  273. margin: 100px 10px 0;
  274. width: 120px;
  275. font-size: 5em;
  276. color:var(--white);
  277. }
  278.  
  279. .container .title span {
  280. display: inline-block;
  281. width: 140px;
  282. height: 50px;
  283. font-size:1.4em;
  284. color:var(--white);
  285. line-height: 55px;
  286. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement