Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 5.01 KB | None | 0 0
  1.  
  2. html {
  3.   box-sizing: border-box;
  4.   font-family: Arial, Helvetica, sans-serif;
  5. }
  6. h1,h3,h4,h5,h6 {
  7.   font-family: Arial, Helvetica, sans-serif;
  8.   color: white;
  9. }
  10.  
  11. *, *:before, *:after {
  12.   box-sizing: inherit;
  13. }
  14.  
  15. body {
  16.   margin: 0;
  17. }
  18.  
  19. /*CSS voor de banner*/
  20. #Bannerplaatje {
  21.   width: 100%;
  22.   object-fit: contain;
  23.   margin-top: 0px;
  24.   position: relative;
  25.  
  26. }
  27.  
  28. /*CSS voor de actieve pagina*/
  29. .active {
  30.   border-bottom: 3px solid white;
  31. }
  32. /*CSS voor de blokken op de home pagina*/
  33. .row {
  34.   background-color: #326273;
  35.   margin: 32px 0;
  36.   padding: 12px 16% 20px 16%;
  37. }
  38. /*CSS voor de blokken op de home pagina*/
  39. .column {
  40.   float: left;
  41.   width: 30%;
  42.   margin: 8px 16px 8px 10px;
  43.   padding: 0px 20px;
  44. }
  45. /*CSS voor de blokken op de home pagina voor responsive*/
  46. @media screen and (max-width: 452px) {
  47.   .column {
  48.     width: 100%;
  49.     display: block;
  50.  
  51.   }
  52.   #Banner{
  53.     width: 100%;
  54.     height: 100%;
  55.   }
  56. }
  57.  
  58. .kaart {
  59.   box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  60.   background-color: white;
  61.   margin-bottom: 4px;
  62.   margin-top: 4px;
  63.   font-family: Arial, Helvetica, sans-serif;
  64.   text-align: left;
  65. }
  66.  
  67. .container {
  68.   padding: 0px 8px;
  69. }
  70.  
  71. .container::after, .row::after {
  72.   content:"";
  73.   clear: both;
  74.   display: table;
  75. }
  76.  
  77. .button {
  78.   border: none;
  79.   outline: 0;
  80.   display: block;
  81.   padding: 8px;
  82.   color: white;
  83.   background-color: #CC0033;
  84.   text-align: center;
  85.   cursor: default;
  86.   width: 100%;
  87.   font-family: Arial, Helvetica, sans-serif;
  88.   margin-bottom: -8px;
  89. }
  90. .button a {
  91.     text-decoration: none;
  92.     color: white;
  93.     cursor: pointer;
  94. }
  95.  
  96.  
  97. .columnimage {
  98.   width: 100%;
  99.   padding: 8px;
  100.   display: block;
  101.   box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  102. }
  103.  
  104. #kopbestemmingen {
  105.   font-family: Arial, Helvetica, sans-serif;
  106.   text-align: center;
  107.   font-size: 34px;
  108.   font-weight: bold;
  109.   color: white;
  110.   margin-top: 0;
  111.   text-shadow: 2px 2px 4px #000000;
  112. }
  113. /*CSS voor footer*/
  114. #footerblok {
  115.   height: 150px;
  116.   width: 200px;
  117. }
  118. footer
  119. {
  120.   color: #000000;
  121.   text-align: center;
  122.   margin-bottom: 2%;
  123. }
  124.  
  125. input[type=text], select {
  126.   width: 100%;
  127.   padding: 12px 20px;
  128.   margin: 8px 0;
  129.   display: inline-block;
  130.   border: 1px solid rgb(0, 0, 0);
  131.   border-radius: 8px;
  132.   box-sizing: border-box;
  133.   font-family: Arial, Helvetica, Sans-serif;
  134. }
  135. input[type=email], select {
  136.   width: 100%;
  137.   padding: 12px 20px;
  138.   margin: 8px 0;
  139.   display: inline-block;
  140.   border: 1px solid #000000;
  141.   border-radius: 8px;
  142.   box-sizing: border-box;
  143.   font-family: Arial, Helvetica, Sans-serif;
  144. }
  145. input[type=date], select {
  146.   width: 100%;
  147.   padding: 12px 20px;
  148.   margin: 8px 0;
  149.   display: inline-block;
  150.   border: 1px solid #000000;
  151.   border-radius: 8px;
  152.   box-sizing: border-box;
  153.   font-family: Arial, Helvetica, Sans-serif;
  154. }
  155. input[type=tel], select {
  156.   width: 100%;
  157.   padding: 12px 20px;
  158.   margin: 8px 0;
  159.   display: inline-block;
  160.   border: 1px solid #000000;
  161.   border-radius: 8px;
  162.   box-sizing: border-box;
  163.   font-family: Arial, Helvetica, Sans-serif;
  164. }
  165.  
  166. input[type=submit] {
  167.   width: 100%;
  168.   background-color: #631D76;
  169.   color: white;
  170.   padding: 14px 20px;
  171.   margin: 8px 0;
  172.   border: none;
  173.   border-radius: 4px;
  174.   cursor: pointer;
  175.   font-family: Arial, Helvetica, Sans-serif;
  176. }
  177.  
  178. input[type=submit]:hover {
  179.   background-color: #631D76;
  180. }
  181.  
  182.  
  183.  
  184. form{
  185.   font-family: Arial, Helvetica, Sans-serif;
  186.   margin: 2%;
  187. }
  188.  
  189.  
  190.  
  191.  
  192. .columncont {
  193.   float: left;
  194.   width: 50%;
  195.   padding: 10px;
  196.  
  197. }
  198.  
  199.  
  200. .rowcont:after {
  201.   content: "";
  202.   display: table;
  203.   clear: both;
  204. }
  205.  
  206. /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  207.  
  208.  
  209. @media screen and (max-width: 600px) {
  210.   .columncont {
  211.     width: 100%;
  212.   }
  213.  
  214.   .topnav a:not(:first-child) {display: none;}
  215.   .topnav a.icon {
  216.     float: right;
  217.     display: block;
  218.   }
  219.  
  220.   .topnav.responsive {position: relative;}
  221.   .topnav.responsive .icon {
  222.     position: absolute;
  223.     right: 0;
  224.     top: 0;
  225.     display: block;
  226.   }
  227.   .topnav.responsive a {
  228.     float: none;
  229.     display: block;
  230.     text-align: left;
  231.   }
  232. }
  233. .topnav {
  234.   overflow: hidden;
  235.   background-color: #326273;
  236. }
  237.  
  238. .topnav a {
  239.   float: left;
  240.   display: block;
  241.   color: #f2f2f2;
  242.   text-align: center;
  243.   padding: 14px 16px;
  244.   text-decoration: none;
  245.   font-size: 17px;
  246. }
  247.  
  248. .topnav a:hover {
  249.   background-color: #ddd;
  250.   color: black;
  251. }
  252.  
  253. .active {
  254.   background-color: #326273;
  255.   color: white;
  256. }
  257.  
  258. .topnav .icon {
  259.   display: none;
  260. }
  261. /*CSS voor google maps*/
  262.   #map {
  263.     height: 400px;
  264.     width: 100%;  
  265.    }
  266.  
  267.  
  268. /*CSS voor de video*/
  269. .videoWrapper {
  270.     position: relative;
  271.     padding-bottom: 56.25%; /* 16:9 */
  272.     padding-top: 25px;
  273.     height: 0;
  274.   }
  275. .videoWrapper iframe {
  276.     position: absolute;
  277.     top: 0;
  278.     left: 0;
  279.     width: 100%;
  280.     height: 100%;
  281.     max-width: 100%;
  282.     max-height: 100%;
  283.   }
  284.  
  285.   .middenstuk
  286. {
  287.     font-family: Arial, Helvetica, sans-serif;
  288.     background-color:#326273;
  289.     float: left;
  290.     width: 100%;
  291. }
  292. p .info
  293. {
  294.     margin-left: 10%;
  295. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement