website/style.css

191 lines
3.1 KiB
CSS
Raw Normal View History

2024-02-12 16:27:04 -08:00
* {
box-sizing: border-box;
}
2024-01-27 20:43:36 -08:00
2024-02-12 16:27:04 -08:00
body {
background-image: url("assets/DSCF8482.jpg");
background-size: cover;
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
background-color: #111111;
color: #4c4f69;
2024-03-04 15:55:59 -08:00
font-family: "Figtree", Arial, sans-serif;
2024-02-12 16:27:04 -08:00
}
2024-01-27 20:43:36 -08:00
2024-02-12 16:27:04 -08:00
.container {
display: block;
margin-left: auto;
margin-right: auto;
width: 75%;
grid-gap: 20px;
backdrop-filter: blur(15px);
2024-03-04 15:55:59 -08:00
background-color: rgba(35, 38, 52, 0.35);
2024-02-12 16:27:04 -08:00
}
2024-01-27 20:43:36 -08:00
2024-02-12 16:27:04 -08:00
.divs {
2024-03-04 15:55:59 -08:00
border: 2px solid #ef9f76;
2024-02-12 16:27:04 -08:00
border-radius: 10px;
padding: 10px;
2024-03-04 15:55:59 -08:00
box-shadow: 0 0 10px 0px #ef9f76;
2024-02-12 16:27:04 -08:00
}
2024-01-27 20:43:36 -08:00
2024-02-12 16:27:04 -08:00
h1 {
margin-bottom: 2px;
margin-top: 2px;
font-size: 4em;
2024-03-04 15:55:59 -08:00
color: #c6d0f5;
2024-02-12 16:27:04 -08:00
text-align: center;
}
2024-01-27 20:43:36 -08:00
2024-02-12 16:27:04 -08:00
h2 {
margin-top: 2px;
margin-bottom: 2px;
font-size: 3em;
2024-03-04 15:55:59 -08:00
color: #c6d0f5;
2024-02-12 16:27:04 -08:00
text-align: center;
}
2024-01-27 20:43:36 -08:00
2024-02-12 16:27:04 -08:00
h3 {
margin-bottom: 10px;
margin-top: 3px;
font-size: 1.75em;
2024-03-04 15:55:59 -08:00
color: #ef9f76;
2024-02-12 16:27:04 -08:00
text-align: center;
}
2024-01-27 20:43:36 -08:00
2024-02-12 16:27:04 -08:00
footer {
text-align: center;
border-top: 2px;
padding-top: 5px;
padding-bottom: 0px;
margin-left: auto;
margin-right: auto;
width: 80%;
2024-03-04 15:55:59 -08:00
color: #c6d0f5
2024-02-12 16:27:04 -08:00
}
2024-01-27 20:43:36 -08:00
2024-02-12 16:27:04 -08:00
h4 {
margin-top: 2px;
margin-bottom: 2px;
font-size: 2.5em;
2024-03-04 15:55:59 -08:00
color: #ef9f76;
2024-02-12 16:27:04 -08:00
text-align: center;
}
2024-01-27 20:43:36 -08:00
2024-02-12 16:27:04 -08:00
p {
font-size: 2em;
margin: 10px;
text-align: center;
2024-03-04 15:55:59 -08:00
color: #c6d0f5
2024-02-12 16:27:04 -08:00
}
2024-01-27 20:43:36 -08:00
2024-02-12 16:27:04 -08:00
#h {
font-size: 2.5em;
text-align: center;
list-style-type: none;
2024-03-04 15:55:59 -08:00
color: #c6d0f5;
2024-02-12 16:27:04 -08:00
font-weight: bold;
}
2024-01-27 20:43:36 -08:00
2024-02-12 16:27:04 -08:00
#e {
font-size: 2em;
text-align: center;
list-style-type: none;
2024-03-04 15:55:59 -08:00
color: #c6d0f5;
2024-02-12 16:27:04 -08:00
margin-bottom: 1.5px;
}
2024-01-27 20:43:36 -08:00
2024-02-12 16:27:04 -08:00
.shit {
display: inline-block;
padding: 5px;
2024-03-04 15:55:59 -08:00
border: 1px solid #ef9f76;
2024-02-26 18:58:16 -08:00
padding-right: 5px;
2024-02-12 16:27:04 -08:00
text-decoration: none;
2024-03-04 15:55:59 -08:00
color: #c6d0f5;
2024-02-12 16:27:04 -08:00
border-radius: 5px;
font-weight: bold;
text-align: center;
font-size: 1.25em;
}
2024-01-27 20:43:36 -08:00
2024-02-12 16:27:04 -08:00
.button {
padding: 5px;
2024-03-04 15:55:59 -08:00
border: 1px solid #ef9f76;
2024-02-12 16:27:04 -08:00
text-decoration: none;
2024-03-04 15:55:59 -08:00
color: #c6d0f5;
background-color: #414559;
2024-02-12 16:27:04 -08:00
border-radius: 5px;
font-weight: bold;
text-align: center;
font-size: 1.25em;
margin: 5px;
line-height: 1.75em
}
.button:hover {
2024-03-04 15:55:59 -08:00
background-color: #ef9f76;
color: #292c3c;
border-color: #fab387;
2024-02-12 16:27:04 -08:00
}
a {
2024-03-04 15:55:59 -08:00
color: #8caaee
2024-02-12 16:27:04 -08:00
}
a:hover {
2024-03-04 15:55:59 -08:00
color: #85c1dc
2024-02-12 16:27:04 -08:00
}
a:visited {
2024-03-04 15:55:59 -08:00
color: #ca9ee6
2024-02-12 16:27:04 -08:00
}
2024-01-27 20:43:36 -08:00
.batton {
2024-02-12 16:27:04 -08:00
display: grid;
width: 25%;
margin-right: auto;
margin-left: auto;
grid-template-columns: 1fr;
grid-template-rows: 1fr;
justify-content: center;
align-items: center;
padding-bottom: 1px;
}
.meow {
height: 2px;
width: 80%;
2024-03-04 15:55:59 -08:00
background-color: #ef9f76;
2024-02-12 16:27:04 -08:00
margin-left: auto;
margin-right: auto;
margin-bottom: 10px;
margin-top: 10px;
2024-01-27 20:43:36 -08:00
}
2024-02-12 16:27:04 -08:00
.nya {
height: 2px;
width: 80%;
2024-03-04 15:55:59 -08:00
background-color: #292c3c;
2024-02-12 16:27:04 -08:00
margin-left: auto;
margin-right: auto;
margin-bottom: 10px;
margin-top: 10px;
}
@media screen and (max-width:750px) {
#h {
padding: 0px;
margin-left: 0px
}
2024-01-27 20:43:36 -08:00
2024-02-12 16:27:04 -08:00
#e {
padding: 0px;
margin-left: 0px
}
2024-01-27 20:43:36 -08:00
2024-02-12 16:27:04 -08:00
.button-container {
display: flex;
}
2024-01-27 20:43:36 -08:00
2024-02-26 18:52:46 -08:00
}