butter-kanglam-ui/assets/css/butter-dir-listing.css

134 lines
2.1 KiB
CSS
Raw Normal View History

/* Based on the default lighttpd styles, this butters up the UI */
body {
font-family: "Poppins", sans-serif;
2024-06-05 14:16:00 -05:00
margin: 0;
}
a {
text-decoration: none;
}
2024-06-05 13:20:56 -05:00
body>h2 {
/* Hide the builtin title "Index of /this/that */
display: none;
}
div.list {
2024-06-05 12:39:00 -05:00
/* 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;
2024-06-05 12:39:00 -05:00
}
2024-06-05 14:16:00 -05:00
.breadcrumbs {
display: flex;
align-items: center;
2024-06-12 21:50:55 -05:00
height: 54px;
a {
height: -webkit-fill-available;
}
.home-icon {
padding-left: 12px;
}
2024-06-05 14:16:00 -05:00
.path-next {
margin: 0 10px 2px 10px;
2024-06-05 14:16:00 -05:00
height: 12px;
rotate: 180deg;
2024-06-05 14:16:00 -05:00
}
}
.crumb {
align-items: center;
color: black;
display: flex;
font-family: "Poppins", sans-serif;
font-size: 16px;
2024-06-05 14:16:00 -05:00
}
2024-06-07 16:07:53 -05:00
.breadcrumb-name {
2024-06-05 14:58:48 -05:00
display: flex;
align-items: center;
2024-06-12 21:50:55 -05:00
height: 48px;
font-size: 18px;
2024-06-05 14:58:48 -05:00
a {
display: flex;
align-items: center;
2024-06-12 21:50:55 -05:00
height: -webkit-fill-available;
padding: 0 10px;
2024-06-05 14:58:48 -05:00
}
img.back {
width: 18px;
height: 18px;
margin-left: 10px;
2024-06-05 14:58:48 -05:00
margin-right: 10px;
}
}
2024-06-05 13:20:56 -05:00
h2 {
font-size: 18px;
font-weight: 500;
margin: 10px;
}
hr {
border: none;
border-top: 1px solid #E6E6E4;
margin: 20px 10px;
}
2024-06-05 14:16:00 -05:00
hr.full-width {
margin: 0;
}
2024-06-07 14:38:54 -05:00
.filerow {
2024-06-05 12:39:00 -05:00
display: flex;
align-items: center;
height: 44px;
margin: 10px;
2024-06-05 12:39:00 -05:00
box-sizing: border-box;
2024-06-05 13:20:56 -05:00
font-family: "Poppins", sans-serif;
2024-06-05 12:39:00 -05:00
}
2024-06-07 14:38:54 -05:00
.logo-filerow {
2024-06-05 12:39:00 -05:00
display: flex;
align-items: center;
justify-content: center;
2024-06-05 13:20:56 -05:00
width: 32px;
height: 32px;
2024-06-05 12:39:00 -05:00
}
2024-06-07 14:38:54 -05:00
.logo-filerow img {
2024-06-05 13:20:56 -05:00
width: 32px;
height: 32px;
2024-06-05 12:39:00 -05:00
}
2024-06-07 14:38:54 -05:00
.text-filerow {
2024-06-05 12:39:00 -05:00
display: flex;
flex-direction: column;
justify-content: center;
flex-grow: 1;
padding: 0 10px;
box-sizing: border-box;
}
2024-06-07 14:38:54 -05:00
.text-filerow .upper-text {
font-size: 16px;
2024-06-05 12:39:00 -05:00
line-height: 18px;
2024-06-05 13:20:56 -05:00
padding: 2px;
color: black;
2024-06-05 12:39:00 -05:00
}
2024-06-07 14:38:54 -05:00
.text-filerow .lower-text {
2024-06-05 12:39:00 -05:00
font-size: 12px;
2024-06-05 13:20:56 -05:00
padding: 2px;
2024-06-05 12:39:00 -05:00
color: gray;
}
.dl-block {
2024-06-05 12:39:00 -05:00
width: 30px;
height: 30px;
}