fedhub/static/main.css
2020-04-21 20:39:49 -05:00

80 lines
No EOL
1.3 KiB
CSS

:root {
--background-color: #15202B;
--text-color: #D4D4D4;
--link-color: lightskyblue;
--sans-font: "Helvetica", "Arial", "Liberation Sans", sans-serif;
--mono-font: "Roboto Mono", "Roboto Mono for Powerline", "Inconsolata", "Consolas", monospace;
}
body {
max-width: 850px;
margin: auto;
min-height: 100%;
padding-bottom: 20px;
font-family: var(--sans-font);
background-color: var(--background-color);
color: var(--text-color);
}
header {
margin: auto 12px;
}
header #header {
border-bottom: 2px solid var(--link-color);
box-sizing: border-box;
padding: 20px;
margin-bottom: 12px;
}
header #header #title {
font-size: 2em;
color: var(--text-color);
}
header #header #title:hover {
text-decoration: none;
}
a {
color: var(--link-color);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.file-list {
margin-bottom: 24px;
width: 100%;
}
.file-list td {
padding: 3px 4px;
}
table.striped tr:nth-child(even) {
background-color: rgba(255, 255, 255, 0.05);
}
.blob-contents {
width: 100%;
overflow-x: auto;
font-family: var(--mono-font);
display: flex;
}
.blob-contents .left {
margin-right: 12px;
text-align: right;
}
.readme {
border-top: 1px dotted var(--link-color);
}
.right-justified {
text-align: right;
}