startpage/style.css

109 lines
1.5 KiB
CSS
Raw Permalink Normal View History

2024-01-20 16:08:38 +01:00
:root {
--font: "monospace";
--font-family: "monospace";
2024-01-20 16:34:13 +01:00
--background: #11111b;
--foreground: #cdd6f4;
--lavender: #b4befe;
--pink: #f5c2e7;
--blue: #89b4fa;
--branch: 1px solid #cdd6f4;
2024-01-20 16:08:38 +01:00
}
html {
font-size: 20px;
}
body {
background: var(--background);
}
.container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.prompt {
font-family: var(--font);
color: var(--foreground);
}
.prompt~.prompt {
padding: 1.5rem 0 0.3125rem;
}
span {
2024-01-20 16:34:13 +01:00
color: var(--lavender);
2024-01-20 16:08:38 +01:00
}
h1 {
display: inline;
font-family: var(--font);
font-size: 1rem;
font-weight: normal;
2024-01-20 16:34:13 +01:00
color: var(--pink);
2024-01-20 16:08:38 +01:00
}
.tree > ul {
margin: 0;
padding-left: 1rem;
}
ul {
list-style: none;
padding-left: 2.5rem;
}
li {
position: relative;
}
li::before, li::after {
content: "";
position: absolute;
left: -0.75rem;
}
li::before {
border-top: var(--branch);
top: 0.75rem;
width: 0.5rem;
}
li::after {
border-left: var(--branch);
height: 100%;
top: 0.25rem;
}
li:last-child::after {
height: 0.5rem;
}
a {
font-family: var(--font);
font-size: 1rem;
color: var(--foreground);
text-decoration: none;
outline: none;
}
a:hover {
color: var(--background);
2024-01-20 16:34:13 +01:00
background: var(--blue);
2024-01-20 16:08:38 +01:00
}
form h1 {
padding-left: 0.125rem;
}
input {
font-family: var(--font);
font-size: 1rem;
color: var(--foreground);
background-color: var(--background);
border: none;
outline: none;
}