InsulineSodarameme/css/index.css

68 lines
1.2 KiB
CSS
Raw Normal View History

2023-01-04 18:10:14 +01:00
2023-01-05 20:52:06 +01:00
:root{
--meme-wsize: 50vw;
--meme-vsize: 26vw;
2023-01-04 18:10:14 +01:00
}
2023-01-05 20:52:06 +01:00
.page{
background:linear-gradient(rgb(189, 211, 255), rgb(55, 15, 141));
z-index:2;
2023-01-04 18:10:14 +01:00
}
2023-01-05 20:52:06 +01:00
.Liste{
width:100%;
height:100vh;
overflow: scroll;
}
2023-01-06 12:21:53 +01:00
/*.memeContainer {
border-color: black;
border-width: 1px;
border-style: solid;
width:25%;
2023-01-05 20:52:06 +01:00
padding-bottom: 25%;
float: left;
margin : 5%;
height: 0;
}
.meme{
2023-01-06 12:21:53 +01:00
width: 100%;
2023-01-05 20:52:06 +01:00
left: 0;
2023-01-06 12:21:53 +01:00
}*/
.row {
display: flex;
flex-wrap: wrap;
padding: 0 4px;
}
/* Create deux equal columns that sits next to each other */
.column {
flex: 50%;
max-width: 50%;
padding: 0 4px;
}
.column img {
margin-top: 8px;
vertical-align: middle;
width: 100%;
}
/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
.column {
flex: 100%;
max-width: 100%;
}
}
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.column {
flex: 100%;
max-width: 100%;
}
2023-01-05 20:52:06 +01:00
}