113 lines
1.6 KiB
CSS
113 lines
1.6 KiB
CSS
html {
|
|
background-color: var(--background);
|
|
color: white;
|
|
|
|
--background: #202020;
|
|
--background2: #101010;
|
|
--foreground: #303030;
|
|
--foreground2: #404040;
|
|
--text: white;
|
|
|
|
--danger: orangered;
|
|
--success: #080;
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
flex-direction: row;
|
|
background-color: var(--foreground);
|
|
height: 40px;
|
|
}
|
|
|
|
.navigation {
|
|
display: flex;
|
|
flex-direction: row;
|
|
margin-left: 0;
|
|
padding: 0;
|
|
margin: 0;
|
|
height: 100%;
|
|
}
|
|
|
|
.navigation>a {
|
|
list-style: none;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 5px;
|
|
}
|
|
|
|
.navigation>a:hover {
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
a,
|
|
a:active,
|
|
a:visited {
|
|
color: var(--text);
|
|
text-decoration: none;
|
|
height: 100%;
|
|
}
|
|
|
|
a:hover {
|
|
color: white;
|
|
}
|
|
|
|
button {
|
|
background-color: var(--foreground);
|
|
outline: none;
|
|
border: none;
|
|
color: var(--text);
|
|
padding: 7px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
input {
|
|
background-color: var(--foreground);
|
|
outline: none;
|
|
border: none;
|
|
color: var(--text);
|
|
padding: 7px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
button:hover {
|
|
filter: brightness(1.2);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.loggedIn {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 5px;
|
|
font-weight: bold;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
.loggedIn>button {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
|
|
.icon {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
|
|
.pageContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 10px;
|
|
}
|
|
|
|
.pageContent {
|
|
width: 100%;
|
|
max-width: 75em;
|
|
} |