hexlocation
775cbae281
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
132 lines
2.2 KiB
CSS
132 lines
2.2 KiB
CSS
#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);
|
|
}
|
|
: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);
|
|
}
|
|
|
|
/*
|
|
CSS styling for guestbook
|
|
*/
|
|
#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;
|
|
}
|
|
|
|
/*
|
|
CSS styling for services page.
|
|
*/
|
|
|
|
: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));
|
|
}
|