mirror of
https://git.gay/DeltaStudio/PufokReactApp.git
synced 2025-07-18 13:52:25 +07:00
44 lines
670 B
CSS
44 lines
670 B
CSS
:root {
|
|
--link-color: rgb(245, 132, 79);
|
|
--link-hover-color: rgb(238, 127, 75);
|
|
}
|
|
|
|
body {
|
|
font-family: jetbrains-mono, monospace;
|
|
margin: 0;
|
|
padding: 0;
|
|
background: #140f10;
|
|
color: rgb(241, 209, 190);
|
|
}
|
|
|
|
.app {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.navbar ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
display: flex;
|
|
gap: 1rem;
|
|
/* background: #18161f; */
|
|
padding: 1rem;
|
|
}
|
|
|
|
.navbar a {
|
|
color: var(--link-color);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.navbar a:hover {
|
|
color: var(--link-hover-color);
|
|
}
|
|
|
|
.footer {
|
|
text-align: center;
|
|
padding: 1.5rem;
|
|
/* background: #18161f; */
|
|
color: rgb(238, 127, 75);
|
|
margin-top: auto;
|
|
} |