website/style.css
2024-03-06 14:14:23 -08:00

110 lines
1.7 KiB
CSS

* {
box-sizing: border-box;
}
body {
background-color: #303446;
color: #4c4f69;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
}
p {
font-size: 2em;
margin: 10px;
text-align: center;
color: #c6d0f5;
}
a {
color: #8caaee;
}
a:hover {
color: #85c1dc;
}
a:visited {
color: #ca9ee6;
}
h1 {
margin-bottom: 2px;
margin-top: 2px;
font-size: 3em;
color: #c6d0f5;
text-align: center;
}
h2 {
margin-top: 2px;
margin-bottom: 2px;
font-size: 2em;
color: #c6d0f5;
text-align: center;
}
h3 {
margin-top: 2px;
margin-bottom: 2px;
font-size: 1.5em;
color: #ef9f76;
text-align: center;
}
ul {
padding: 0;
}
li {
font-size: 1.5em;
text-align: center;
list-style-type: none;
color: #c6d0f5;
margin-bottom: 1.5px;
}
footer {
margin: 0 auto;
color: #c6d0f5;
display: flex;
flex-direction: column;
text-align: center;
gap: 2rem;
}
.socials {
display: flex;
margin-right: auto;
margin-left: auto;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.socials a {
padding: 0.25rem 0.5rem;
text-decoration: none;
color: #c6d0f5;
background-color: #414559;
border-radius: 5px;
font-weight: bold;
text-align: center;
font-size: 1.25em;
margin: 5px;
line-height: 1.75em;
}
.socials a:hover {
background-color: #ef9f76;
color: #292c3c;
border-color: #fab387;
}
hr {
height: 2px;
width: 80%;
background-color: #ef9f76;
border: none;
margin: 1.5rem auto;
box-shadow: 0 0 5px 0px #ef9f76;
}