2024-01-30 12:18:28 +01:00
|
|
|
.row > .column {
|
|
|
|
|
padding: 0 8px;
|
2019-10-20 22:27:27 +02:00
|
|
|
}
|
2020-03-09 13:20:20 +01:00
|
|
|
|
2024-01-30 12:18:28 +01:00
|
|
|
.row:after {
|
|
|
|
|
content: "";
|
|
|
|
|
display: table;
|
|
|
|
|
clear: both;
|
2019-10-20 22:27:27 +02:00
|
|
|
}
|
|
|
|
|
|
2024-01-30 12:18:28 +01:00
|
|
|
/* Create four equal columns that floats next to eachother */
|
|
|
|
|
.column {
|
|
|
|
|
float: left;
|
|
|
|
|
width: 25%;
|
2020-03-09 13:20:20 +01:00
|
|
|
}
|
|
|
|
|
|
2024-01-30 12:18:28 +01:00
|
|
|
/* The Modal (background) */
|
|
|
|
|
.modal {
|
2020-03-09 13:20:20 +01:00
|
|
|
display: none;
|
|
|
|
|
position: fixed;
|
2024-01-30 12:18:28 +01:00
|
|
|
z-index: 1;
|
|
|
|
|
padding-top: 100px;
|
2020-03-09 13:20:20 +01:00
|
|
|
left: 0;
|
|
|
|
|
top: 0;
|
2024-01-30 12:18:28 +01:00
|
|
|
width: 100%;
|
2020-03-09 13:20:20 +01:00
|
|
|
height: 100%;
|
2024-01-30 12:18:28 +01:00
|
|
|
overflow: auto;
|
|
|
|
|
background-color: black;
|
2020-03-09 13:20:20 +01:00
|
|
|
}
|
|
|
|
|
|
2024-01-30 12:18:28 +01:00
|
|
|
/* Modal Content */
|
|
|
|
|
.modal-content {
|
2020-03-09 13:20:20 +01:00
|
|
|
position: relative;
|
2024-01-30 12:18:28 +01:00
|
|
|
background-color: #fefefe;
|
|
|
|
|
margin: auto;
|
|
|
|
|
padding: 0;
|
|
|
|
|
width: 90%;
|
|
|
|
|
max-width: 1200px;
|
2020-03-09 13:20:20 +01:00
|
|
|
}
|
|
|
|
|
|
2024-01-30 12:18:28 +01:00
|
|
|
/* The Close Button */
|
|
|
|
|
.close {
|
|
|
|
|
color: white;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 10px;
|
|
|
|
|
right: 25px;
|
|
|
|
|
font-size: 35px;
|
|
|
|
|
font-weight: bold;
|
2020-03-09 13:20:20 +01:00
|
|
|
}
|
|
|
|
|
|
2024-01-30 12:18:28 +01:00
|
|
|
.close:hover,
|
|
|
|
|
.close:focus {
|
|
|
|
|
color: #999;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
cursor: pointer;
|
2020-03-09 13:20:20 +01:00
|
|
|
}
|
|
|
|
|
|
2024-01-30 12:18:28 +01:00
|
|
|
/* Hide the slides by default */
|
|
|
|
|
.mySlides {
|
|
|
|
|
display: none;
|
2020-03-09 13:20:20 +01:00
|
|
|
}
|
|
|
|
|
|
2024-01-30 12:18:28 +01:00
|
|
|
/* Next & previous buttons */
|
|
|
|
|
.prev,
|
|
|
|
|
.next {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 50%;
|
|
|
|
|
width: auto;
|
|
|
|
|
padding: 16px;
|
|
|
|
|
margin-top: -50px;
|
|
|
|
|
color: white;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
transition: 0.6s ease;
|
|
|
|
|
border-radius: 0 3px 3px 0;
|
|
|
|
|
user-select: none;
|
|
|
|
|
-webkit-user-select: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Position the "next button" to the right */
|
|
|
|
|
.next {
|
|
|
|
|
right: 0;
|
|
|
|
|
border-radius: 3px 0 0 3px;
|
2020-03-09 13:20:20 +01:00
|
|
|
}
|
|
|
|
|
|
2024-01-30 12:18:28 +01:00
|
|
|
/* On hover, add a black background color with a little bit see-through */
|
|
|
|
|
.prev:hover,
|
|
|
|
|
.next:hover {
|
|
|
|
|
background-color: rgba(0, 0, 0, 0.8);
|
2020-03-09 13:20:20 +01:00
|
|
|
}
|
|
|
|
|
|
2024-01-30 12:18:28 +01:00
|
|
|
/* Number text (1/3 etc) */
|
|
|
|
|
.numbertext {
|
|
|
|
|
color: #f2f2f2;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
padding: 8px 12px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
2020-03-09 13:20:20 +01:00
|
|
|
}
|
|
|
|
|
|
2024-01-30 12:18:28 +01:00
|
|
|
/* Caption text */
|
|
|
|
|
.caption-container {
|
|
|
|
|
text-align: center;
|
|
|
|
|
background-color: black;
|
|
|
|
|
padding: 2px 16px;
|
|
|
|
|
color: white;
|
2020-03-09 13:20:20 +01:00
|
|
|
}
|
|
|
|
|
|
2024-01-30 12:18:28 +01:00
|
|
|
img.demo {
|
|
|
|
|
opacity: 0.6;
|
2020-03-09 13:20:20 +01:00
|
|
|
}
|
|
|
|
|
|
2024-01-30 12:18:28 +01:00
|
|
|
.img-active,
|
|
|
|
|
.demo:hover {
|
|
|
|
|
opacity: 1 !important;
|
2020-03-09 13:20:20 +01:00
|
|
|
}
|
|
|
|
|
|
2024-01-30 12:18:28 +01:00
|
|
|
img.hover-shadow {
|
|
|
|
|
transition: 0.3s;
|
2020-03-09 13:20:20 +01:00
|
|
|
}
|
|
|
|
|
|
2024-01-30 12:18:28 +01:00
|
|
|
.hover-shadow:hover {
|
|
|
|
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
2019-10-20 22:27:27 +02:00
|
|
|
}
|