iwakuweb/assets/css/global.css
hexlocation c539c98191
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
:: members section looked like trash.
2024-10-05 01:25:24 +02:00

133 lines
2.3 KiB
CSS

/* I know everything looks absolutely trash :3 */
#top {
margin-top: 2vw;
margin-left: 15vw;
margin-right: 15vw;
}
@font-face {
font-family: "Hack Nerd Font";
src: url(/assets/ttf/HNF-Reg.ttf);
}
@font-face {
font-family: "Jetbrains Mono";
src: url(/assets/ttf/JBM.ttf);
}
.user-display {
}
.prefix {
display: inline;
margin-right: 5px;
font-size: 12px;
}
:root {
--text-color: #8941ad;
--term-color: #4af626;
}
body {
color: var(--term-color);
background-color: black;
font-family: "Jetbrains Mono";
}
#link-container a {
text-decoration: none;
color: var(--term-color);
}
#link-container {
display: flex;
gap: 4vw;
}
hr {
margin-top: 1px;
color: var(--term-color);
}
#entries {
align-items: center;
gap: 10px;
margin-top: 10px;
display: flex;
flex-direction: column;
}
.guest-entry {
width: 100%;
}
bu {
font-weight: bold;
text-decoration: underline;
}
.entry-header {
display: flex;
justify-content: space-between;
}
.entry-body {
font-size: 14px;
overflow: auto;
word-wrap: break-word;
}
a {
text-decoration: none;
color: var(--term-color);
}
#post-container {
text-align: center;
padding: 5px;
margin: auto;
margin-top: 10px;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
flex: 0 0 auto;
}
input,
textarea {
margin-left: 5vw;
}
.break {
flex-basis: 100%;
height: 0;
}
.link:hover {
background-color: var(--term-color);
color: black;
}
label {
text-align: left;
clear: both;
float: left;
}
:root {
--sin-padding: 5px;
}
#service-containers {
display: flex;
gap: 10px;
flex-wrap: wrap;
width: 100%;
justify-content: center;
}
.service-link {
color: var(--term-color);
vertical-align: middle;
}
.service-icon {
vertical-align: middle;
}
.service-title {
align-items: center;
gap: 5px;
display: flex;
margin: 0;
justify-content: center;
}
.service-container {
padding: var(--sin-padding);
padding-top: 0px;
flex-shrink: 0;
border: 1px solid var(--term-color);
flex-basis: 22%;
}
.service-container hr {
margin-left: calc(-1 * var(--sin-padding));
margin-right: calc(-1 * var(--sin-padding));
}