nycki.net/static/style.css

51 lines
No EOL
738 B
CSS

:root {
font-family: sans-serif;
color: hotpink;
padding: 2rem;
background-color: black;
max-width: 100ch;
margin: 0 auto;
}
h1 {
text-align: center;
}
div.subtitle {
text-align: center;
font-style: italic;
}
a:link {
color: skyblue;
}
a:visited {
color: gray;
}
section {
margin-top: 2ch;
border-top: 1.5ch double mediumvioletred;
}
section img {
display: block;
border: 1.5ch double mediumvioletred;
margin-left: auto;
margin-right: auto;
max-height: 40ch;
}
.gallery {
display:flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.gallery img {
border: 0.5ch solid mediumvioletred;
margin: 1ch;
width: 12ch;
}