cabinet/templates/stylesheet.css

69 lines
725 B
CSS
Raw Normal View History

2022-01-14 18:07:31 -05:00
body {
2022-01-14 19:32:43 -05:00
background-color: black;
color: white;
margin: 0;
}
header {
background-color: #232323;
padding: 1em;
}
a {
text-decoration: none;
color: #3b7fdd;
}
2022-01-14 19:49:11 -05:00
.button {
padding: .4em;
border-radius: 3px;
}
#pdf {
background-color: red;
color: white;
right: 0;
bottom: -.4em;
position: absolute;
}
header div {
display: block;
position: relative;
}
2022-01-14 19:32:43 -05:00
#back {
background-color: #3b7fdd;
color: black;
}
#path {
margin-left: 1em;
}
#cabinet {
margin-top: 0;
}
main {
margin: 2em;
width: 60%;
margin-left: 20%;
text-align: justify;
2022-01-16 15:58:46 -05:00
position: relative;
}
.highlight {
background-color: #111;
padding: .2em .5em;
border-radius: 4px;
}
.highlighttable {
width: 100%;
}
pre {
overflow-x: auto;
2022-01-14 18:07:31 -05:00
}