Advertisement
Guest User

Untitled

a guest
Nov 12th, 2019
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.04 KB | None | 0 0
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6.  
  7. .nav-links-2 {
  8. display: none;
  9. }
  10.  
  11. body {
  12. background-color: rgb(255, 255, 255);
  13. width: 100%;
  14. font-family: 'Montserrat', sans-serif;
  15. }
  16.  
  17. nav {
  18. height: 10vh;
  19. background-color: rgb(0, 0, 0);
  20. font-family: 'Barlow', sans-serif;
  21. position: relative;
  22. }
  23.  
  24. .nav-links {
  25. position: relative;
  26. display: flex;
  27. list-style: none;
  28. width: 50%;
  29. height: 1%;
  30. justify-content: space-around;
  31. top: -40px;
  32. margin-left: auto;
  33. font-family: 'Open Sans', sans-serif;
  34. color: antiquewhite;
  35. transition: 0.3s all;
  36. z-index: 2;
  37. }
  38.  
  39. .nav-links a:hover {
  40. color: purple;
  41. opacity: 0.8;
  42. }
  43.  
  44. .nav-links li a {
  45. color: rgb(201, 201, 201);
  46. text-decoration: none;
  47. font-size: 16px;
  48. font-weight: bold;
  49. }
  50.  
  51. .landing {
  52. max-width: 100%;
  53. height: 90vh;
  54. display: block;
  55. justify-content: center;
  56. align-items: center;
  57. }
  58.  
  59. .landing h1 {
  60. margin: 100px;
  61. font-size: 50px;
  62. color: #ae5fce;
  63. }
  64.  
  65. .line {
  66. width: 30px;
  67. height: 3px;
  68. background: rgb(255, 255, 255);
  69. margin: 5px;
  70. }
  71.  
  72. .nav-t {
  73. color: rgb(201, 201, 201);
  74. font-family: 'Open Sans', sans-serif;
  75. }
  76.  
  77. nav {
  78. position: relative;
  79. }
  80.  
  81. .body-tekst {
  82. rotate: 25px;
  83. position: relative;
  84. width: auto;
  85. background-color: rgb(0, 0, 0);
  86. padding: 50px;
  87. font-family: 'Poppins', sans-serif;
  88. ;
  89. font-size: 30px;
  90. float: right;
  91. color: rgb(255, 255, 255);
  92. }
  93.  
  94. .body-tekst2 {
  95. margin: 25px;
  96. position: relative;
  97. width: auto;
  98. padding: 50px;
  99. font-family: Arial, Helvetica, sans-serif;
  100. font-size: 30px;
  101. float: left;
  102. color: rgb(0, 0, 0);
  103. border-radius: 20px;
  104. }
  105.  
  106. .menlogo {
  107. position: absolute;
  108. cursor: pointer;
  109. right: 5%;
  110. top: 50%;
  111. transform: translate(-5%, -50%);
  112. z-index: 3;
  113. }
  114.  
  115. .nav-links {
  116. position: fixed;
  117. background: #000000;
  118. height: 100vh;
  119. width: 100%;
  120. flex-direction: column;
  121. clip-path: circle(100px at 90% -15%);
  122. -webkit-clip-path: circle(100px at 90% -15%);
  123. transition: all 1s ease-out;
  124. }
  125.  
  126. .nav-links.open {
  127. clip-path: circle(1500px at 90% -15%);
  128. -webkit-clip-path: circle(1500px at 90% -15%);
  129. position: fixed;
  130. align-items: center;
  131. text-decoration: none;
  132. }
  133.  
  134. .hero-image {
  135. display: none;
  136. }
  137.  
  138. .dienst1 {
  139. float: right;
  140. background-color: rgba(0, 0, 0, 0.9);
  141. }
  142.  
  143. .dienst3 {
  144. I NEED THIS IN THE CENTER. SO I CAN CHANGE THINGS
  145. }
  146.  
  147. .dienst2 {
  148. float: left;
  149. background-color: rgba(0, 0, 0, 0.9);
  150. }
  151.  
  152. @media screen and (min-width: 728px) {
  153. .hero-image {
  154. position: relative;
  155. background: url(bc.jpeg) no-repeat center;
  156. top: 0%;
  157. height: 500px;
  158. overflow: hidden;
  159. background-size: cover;
  160. display: block;
  161. }
  162. .container {
  163. display: none;
  164. }
  165. }
  166.  
  167. @media screen and (min-width: 1024px) {
  168. html {
  169. height: 100%;
  170. margin: 0;
  171. padding: 0;
  172. }
  173. .hero-image {
  174. position: relative;
  175. background: url(bc.jpeg) no-repeat center;
  176. top: 0%;
  177. height: 500px;
  178. overflow: hidden;
  179. background-size: cover;
  180. display: block;
  181. }
  182. .container {
  183. display: block;
  184. position: absolute;
  185. top: 50%;
  186. left: 50%;
  187. transform: translate(-50%, -50%);
  188. text-align: center;
  189. font-weight: 700;
  190. text-transform: lowercase;
  191. background-color: rgba(0, 0, 0, 0.9);
  192. }
  193. .container h1 {
  194. font-size: 72px;
  195. color: white;
  196. }
  197. .container h1 span {
  198. padding: 9px;
  199. width: 100%;
  200. display: inline-block;
  201. }
  202. .des {
  203. margin: 20px;
  204. display: block;
  205. font-size: 26px;
  206. text-shadow: 0 0 20px black;
  207. color: white;
  208. }
  209. .btn {
  210. color: #313131;
  211. padding: 10px 24px;
  212. font-size: 20px;
  213. text-decoration: none;
  214. background: #f1f1f1;
  215. border-radius: 8px;
  216. transition: 0.3s all;
  217. }
  218. .btn:hover {
  219. opacity: 0.8;
  220. background-color: rgb(89, 0, 255);
  221. }
  222. .links {
  223. text-decoration: none;
  224. color: blue;
  225. }
  226. .menlogo {
  227. display: none;
  228. }
  229. .nav-links-2 {
  230. position: relative;
  231. display: flex;
  232. list-style: none;
  233. width: 50%;
  234. height: 1%;
  235. justify-content: space-around;
  236. top: -40px;
  237. margin-left: auto;
  238. font-family: 'Open Sans', sans-serif;
  239. color: antiquewhite;
  240. transition: 0.3s all;
  241. z-index: 2;
  242. }
  243. .nav-links-2 a:hover {
  244. color: purple;
  245. opacity: 0.8;
  246. }
  247. .nav-links-2 li a {
  248. color: rgb(201, 201, 201);
  249. text-decoration: none;
  250. font-size: 16px;
  251. font-weight: bold;
  252. }
  253. .nav-links {
  254. display: none;
  255. }
  256. }
  257.  
  258. button {
  259. float: right;
  260. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement