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.
 
 

41 lines
689 B

body {
padding: 0px;
margin: 0px;
background-color: rbg(244, 244, 244);
font-family: "Lucida Console", Monaco, monospace;
}
h1,h3 {
color: #444;
margin: 0px;
}
.tripleflex{
display: flex;
width: 100%;
width: 100vw;
align-items: start;
justify-content: center;
}
.container {
display: flex;
margin: 10px;
/*height: 100%;
height: 100vh; */
width: 30%;
width: 30vw;
flex-wrap: wrap;
flex-direction: column;
align-items: baseline;
justify-content: flex-start;
}
.item {
border: 3px solid white;
min-width: 200px;
min-height: 120px;
height: 25%;
background-color: gold;
margin: auto;
flex-grow: 1;
color: #444;
}
img {max-width:100%;}