110 lines
No EOL
1.7 KiB
CSS
110 lines
No EOL
1.7 KiB
CSS
/* Based on the default lighttpd styles, this butters up the UI */
|
|
|
|
body {
|
|
font-family: "Poppins", sans-serif;
|
|
margin: 0;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
body>h2 {
|
|
/* Hide the builtin title "Index of /this/that */
|
|
display: none;
|
|
}
|
|
|
|
div.list {
|
|
/* Hide the builtin listing, we're going to render our own. */
|
|
display: none;
|
|
}
|
|
|
|
div.foot {
|
|
/* No need to display the lighttpd version; this is user-facing. */
|
|
display: none;
|
|
}
|
|
|
|
.breadcrumbs {
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 10px;
|
|
height: 34px;
|
|
.path-next {
|
|
margin: 0 5px;
|
|
height: 12px;
|
|
}
|
|
}
|
|
|
|
.crumb {
|
|
align-items: center;
|
|
color: black;
|
|
display: flex;
|
|
font-family: "Poppins", sans-serif;
|
|
font-size: 14px;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 18px;
|
|
font-weight: 500;
|
|
margin: 10px;
|
|
}
|
|
|
|
hr {
|
|
border: none;
|
|
border-top: 1px solid #E6E6E4;
|
|
margin: 20px 10px;
|
|
}
|
|
|
|
hr.full-width {
|
|
margin: 0;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 44px;
|
|
margin: 10px;
|
|
box-sizing: border-box;
|
|
font-family: "Poppins", sans-serif;
|
|
}
|
|
|
|
.logo-container {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|
|
|
|
.logo-container img {
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|
|
|
|
.text-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
flex-grow: 1;
|
|
padding: 0 10px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.text-container .upper-text {
|
|
font-size: 14px;
|
|
line-height: 18px;
|
|
padding: 2px;
|
|
color: black;
|
|
}
|
|
|
|
.text-container .lower-text {
|
|
font-size: 12px;
|
|
padding: 2px;
|
|
color: gray;
|
|
}
|
|
|
|
.empty-block {
|
|
width: 30px;
|
|
height: 30px;
|
|
} |