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.

183 lines
2.8 KiB
CSS
Raw Normal View History

2024-07-24 13:39:34 -07:00
body {
font-family: sans-serif;
}
nav {
2024-07-24 17:38:59 -07:00
display: grid;
grid-template-columns: 1fr min-content 1fr;
/*flex-direction: row;
justify-content: space-between;*/
2024-07-24 13:39:34 -07:00
align-items: center;
padding: 12px;
border-bottom: solid 1px #00000033;
2024-07-24 17:38:59 -07:00
width: 100%;
box-sizing: border-box;
overflow-wrap: anywhere;
}
nav .nav-left {
/*justify-content: flex-start;*/
justify-self: left;
grid-column: 1;
}
nav .nav-center {
/*justify-content: center;*/
justify-self: center;
grid-column: 2;
}
nav .nav-right {
/*justify-content: flex-end;*/
justify-self: right;
grid-column: 3;
2024-07-24 13:39:34 -07:00
}
nav img {
width: 40px;
height: auto;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: row;
}
2024-07-24 17:38:59 -07:00
nav a {
2024-07-24 13:39:34 -07:00
padding: 8px;
color: #383c3f;
text-decoration: none;
}
@media screen and (max-width: 600px) {
2024-08-05 13:19:01 -07:00
nav {
padding: 6px 0;
}
2024-07-24 13:39:34 -07:00
nav ul {
flex-direction: column;
}
nav li {
text-align: center;
2024-08-05 13:19:01 -07:00
padding: 4px;
2024-07-24 13:39:34 -07:00
}
}
2024-07-24 17:38:59 -07:00
nav a.title {
2024-07-24 13:39:34 -07:00
font-size: 140%;
font-weight: bold;
}
2024-07-24 17:38:59 -07:00
nav button.responsive-button {
display: none;
border: none;
background: none;
cursor: pointer;
}
nav div.inline {
display: flex;
}
@media screen and (max-width: 600px) {
nav button.responsive-button {
display: block;
}
nav ul.responsive-hidden {
display: none;
}
}
2024-07-24 13:39:34 -07:00
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;
text-align: center;
}
2024-07-24 15:20:29 -07:00
ul.linktree li a { /* Pill button shape */
2024-07-24 14:17:10 -07:00
text-decoration: none;
color: white;
background-color: #4c5053;
padding: 8px;
border-radius: 50px;
2024-07-24 15:20:29 -07:00
box-shadow: 2px 2px 4px #00000066;
transition-duration: 0.5s;
display: inline-block;
width: 100%;
box-sizing: border-box;
2024-07-24 13:39:34 -07:00
}
2024-07-24 15:20:29 -07:00
ul.linktree li a:hover {
cursor: pointer;
background-color: #383c3f
}
2024-07-24 13:39:34 -07:00
div.footer {
border-top: solid 1px #00000033;
}
div.footer p {
color: #383c3f;
text-align: center;
}