You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
724 B
49 lines
724 B
* {
|
|
box-sizing: border-box;
|
|
}
|
|
body {
|
|
background-color: #212126!important;
|
|
}
|
|
button {
|
|
border: 0;
|
|
padding: 0;
|
|
margin-top: 8px!important;
|
|
}
|
|
.gallery {
|
|
margin-top: calc(3rem + 55px);
|
|
text-align: center;
|
|
font-size: 2vw;
|
|
}
|
|
.rowImg {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
padding: 0 4px;
|
|
margin-top: 3rem;
|
|
}
|
|
.columnImg {
|
|
flex: 33%;
|
|
max-width: 33%;
|
|
padding: 0 4px;
|
|
}
|
|
.columnImg img {
|
|
width: 100%;
|
|
}
|
|
@media screen and (min-width:500px) and (max-width:1000px) {
|
|
.columnImg {
|
|
flex: 50%;
|
|
max-width: 50%;
|
|
}
|
|
.gallery {
|
|
font-size: 3vw;
|
|
}
|
|
}
|
|
@media screen and (min-width:0px) and (max-width:500px) {
|
|
.columnImg {
|
|
flex: 100%;
|
|
max-width: 100%;
|
|
}
|
|
.gallery {
|
|
font-size: 5vw;
|
|
}
|
|
}
|