flair/static_html/main.css
2023-01-11 18:10:06 +01:00

81 lines
1.2 KiB
CSS

miniature {
width: 200px;
height: 200px;
border-radius: 4px;
padding: 5px;
margin-top: 10px;
border: 1px solid #ddd;
object-fit: cover;
}
/* (X) DOES NOT MATTER */
body, html {
background-color: #111111;
padding: 0;
margin: 0;
font-family: Verdana, "Bitstream Vera Sans", sans-serif;
color: #FFFFFF;
line-height: 1em;
}
a {
text-decoration: none;
color: #FFFFFF;
}
a:hover {
color: #F012BE;
}
.container {
height: 100%;
width: 70%;
display: flex;
column-gap: 2rem;
row-gap: 8rem;
flex-direction: row;
flex-wrap: wrap;
align-content: flex-end;
justify-content: center;
text-align: center;
margin: auto;
}
.item {
height: 200px;
font-size: 15px;
width: 150px;
line-height: 1em;
padding: 3em;
align-items: center;
display: flex;
flex-direction: column;
}
/*
@media screen and (max-width: 920px) {
.item {
width: 30%;
}
}
@media screen and (max-width: 640px) {
.item {
width: 50%;
}
}
*/
h1 {
text-align: center;
}
h2 {
color: #61cObf;
font-size: 1.5em;
line-height: 1px;
margin: 0px;
text-align: center;
}