website/style.css

166 lines
2.8 KiB
CSS
Raw Normal View History

2024-02-12 16:27:04 -08:00
* {
box-sizing: border-box;
}
2024-03-06 17:06:01 -05:00
2024-02-12 16:27:04 -08:00
body {
2025-01-15 20:28:32 -08:00
background-color: #1e1e2e !important;
2025-01-15 18:40:27 -08:00
color: #cdd6f4;
2024-03-06 17:25:22 -08:00
font-family: "Urbanist", Arial, sans-serif;
2024-03-06 17:06:01 -05:00
display: flex;
justify-content: center;
align-items: center;
width: 100%;
2024-02-12 16:27:04 -08:00
}
2024-03-06 17:06:01 -05:00
2024-03-06 17:19:31 -08:00
/* urbanist-regular - latin */
@font-face {
font-display: swap;
/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Urbanist';
font-style: normal;
font-weight: 400;
2024-03-06 19:14:32 -08:00
src: url('./fonts/urbanist-v15-latin-regular.woff2') format('woff2');
2024-03-06 17:19:31 -08:00
/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
2024-03-06 17:08:16 -08:00
2024-03-06 17:06:01 -05:00
p {
2024-07-21 23:00:56 -07:00
font-size: 1em;
2024-03-07 00:47:11 -08:00
margin-left: auto;
margin-right: auto;
2024-03-06 17:06:01 -05:00
text-align: center;
2025-01-15 18:40:27 -08:00
align-items: center;
2024-02-12 16:27:04 -08:00
}
2024-03-06 17:06:01 -05:00
a {
2025-01-15 18:40:27 -08:00
color:#89b4fa;
2024-03-06 13:33:08 -08:00
}
2024-03-06 15:12:58 -08:00
2024-03-06 17:06:01 -05:00
a:hover {
2025-01-15 18:40:27 -08:00
color: #74c7ec;
2024-03-06 17:06:01 -05:00
}
2024-03-06 15:12:58 -08:00
2024-03-06 17:06:01 -05:00
a:visited {
2025-01-15 18:40:27 -08:00
color: #cba6f7;
2024-02-12 16:27:04 -08:00
}
2024-03-06 17:06:01 -05:00
2024-02-12 16:27:04 -08:00
h1 {
margin-bottom: 2px;
margin-top: 2px;
2024-03-06 17:06:01 -05:00
font-size: 3em;
2024-02-12 16:27:04 -08:00
text-align: center;
}
2024-03-06 15:12:58 -08:00
2024-02-12 16:27:04 -08:00
h2 {
margin-top: 2px;
margin-bottom: 2px;
2024-03-06 17:06:01 -05:00
font-size: 2em;
2024-02-12 16:27:04 -08:00
text-align: center;
}
2024-03-06 15:12:58 -08:00
2025-01-12 14:07:39 -08:00
h3 {
margin-top: 0.5em;
margin-bottom: 0.25em;
font-size: 1.5em;
text-align: center;
}
2024-03-06 17:06:01 -05:00
ul {
padding: 0;
2024-02-12 16:27:04 -08:00
}
2024-03-06 17:06:01 -05:00
2024-03-06 13:46:02 -08:00
li {
2024-03-06 13:48:28 -08:00
font-size: 1.5em;
2024-02-12 16:27:04 -08:00
text-align: center;
list-style-type: none;
margin-bottom: 1.5px;
2024-03-07 00:47:11 -08:00
align-content: center;
2024-02-12 16:27:04 -08:00
}
2024-03-06 17:06:01 -05:00
footer {
2024-03-07 00:47:11 -08:00
margin: auto;
2024-03-06 17:06:01 -05:00
display: flex;
flex-direction: column;
2024-03-06 17:32:56 -05:00
align-items: center;
justify-content: center;
2024-03-06 17:06:01 -05:00
text-align: center;
gap: 2rem;
}
2025-01-15 18:40:27 -08:00
.buttons {
margin: auto;
align-items: center;
2024-03-06 17:06:01 -05:00
justify-content: center;
2025-01-15 18:40:27 -08:00
text-align: center;
display: block;
}
.webring {
margin: auto;
2024-03-06 17:06:01 -05:00
align-items: center;
2025-01-15 18:40:27 -08:00
justify-content: center;
text-align: center;
}
.updated {
margin: auto;
align-items: center;
justify-content: center;
text-align: center;
}
.socials {
margin: auto;
display: block;
gap: 2em;
2024-03-06 17:06:01 -05:00
}
2025-01-22 12:12:11 -08:00
.four {
display: inline-block;
vertical-align: middle !important;
line-height: normal;
}
2024-03-06 17:06:01 -05:00
.socials a {
2024-03-06 13:37:17 -08:00
padding: 0.25rem 0.5rem;
2024-02-12 16:27:04 -08:00
text-decoration: none;
2025-01-15 18:40:27 -08:00
color: #cdd6f4;
background-color: #313244;
border-radius: 10px;
2024-03-07 00:16:24 -08:00
border: 2px solid;
2025-01-15 18:40:27 -08:00
border-color: #fab387;
2024-02-12 16:27:04 -08:00
font-size: 1.25em;
2025-01-15 18:40:27 -08:00
margin: auto;
2024-03-06 17:06:01 -05:00
line-height: 1.75em;
2025-01-15 18:40:27 -08:00
box-shadow: 0 0 5px 0 #fab387;
2024-12-30 05:38:04 +03:30
font-style: bold;
animation: 3s ease-in 1s infinite;
transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
2025-01-15 18:40:27 -08:00
align-items: center !important;
2024-12-30 05:38:04 +03:30
}
.socials a:hover {
2025-01-15 18:40:27 -08:00
background-color: #fab387;
color: #11111b;
2024-03-07 00:16:24 -08:00
}
2024-12-13 15:28:38 -08:00
assets/left.svg {
2025-01-15 18:40:27 -08:00
fill: #fab387 !important;
stroke: #fab387 !important;
2024-12-13 15:28:38 -08:00
}
assets/right.svg {
2025-01-15 18:40:27 -08:00
fill: #fab387;
stroke: #fab387;
2024-02-12 16:27:04 -08:00
}
2024-03-06 15:12:58 -08:00
2024-03-06 17:06:01 -05:00
hr {
2024-02-12 16:27:04 -08:00
height: 2px;
width: 80%;
2025-01-15 18:40:27 -08:00
background-color: #fab387;
2024-03-06 17:06:01 -05:00
border: none;
margin: 1.5rem auto;
2025-01-15 18:40:27 -08:00
box-shadow: 0 0 15px 0 #fab387;
}