This repository has been archived on 2025-01-29. You can view files and clone it, but cannot push or open issues or pull requests.

132 lines
2.0 KiB
CSS
Raw Normal View History

2024-07-24 13:39:34 -07:00
body {
font-family: sans-serif;
}
nav {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 12px;
border-bottom: solid 1px #00000033;
}
nav img {
width: 40px;
height: auto;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: row;
}
nav li a {
padding: 8px;
color: #383c3f;
text-decoration: none;
}
@media screen and (max-width: 600px) {
nav ul {
flex-direction: column;
}
nav li {
text-align: center;
}
nav li a {
padding: 12px;
}
}
nav li a.title {
font-size: 140%;
font-weight: bold;
}
main div.heading {
color: #383c3f;
font-size: 200%;
text-align: center;
}
main div.hero {
color: #383c3f;
width: 60%;
margin-top: 16px;
margin-bottom: 16px;
margin-left: auto;
margin-right: auto;
border: solid 1px #00000033;
border-radius: 8px;
padding: 16px;
text-align: center;
box-shadow: 1px 1px 8px #00000033;
}
@media screen and (max-width: 600px) {
main div.hero {
width: 80%;
}
}
main div.hero h1 a {
color: #383c3f;
text-decoration: none;
}
main div.hero p.justify {
text-align: justify;
text-justify: inter-word;
}
main div.hero ul {
margin-left: auto;
margin-right: auto;
2024-07-24 14:17:10 -07:00
}
ul.linktree {
list-style-type: none;
margin: 0;
padding: 8px;
padding-left: 8px;
width: 30%;
}
@media screen and (max-width: 600px) {
ul.linktree {
width: 60%;
}
}
ul.linktree li {
margin: 12px;
background-color: #4c5053;
padding: 8px 16px;
border-radius: 50px;
text-align: center;
transition-duration: 0.5s;
}
ul.linktree li:hover {
cursor: pointer;
background-color: #383c3f
}
ul.linktree li a {
text-decoration: none;
color: white;
2024-07-24 13:39:34 -07:00
}
div.footer {
border-top: solid 1px #00000033;
}
div.footer p {
color: #383c3f;
text-align: center;
}