Files
2022-05-31 15:14:53 +02:00

169 lines
2.5 KiB
CSS

body {
margin: 0;
font-family: Helvetica, Arial, sans-serif;
font-size: 1em;
line-height: 1.6;
color: #a5a5a5;
background-color: #121212
}
footer,
header,
main,
nav {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-content: center;
}
@media print {
* {
color: #000 !important;
text-shadow: none !important;
background: 0 0 !important;
-webkit-box-shadow: none !important;
box-shadow: none !important
}
a,
a:visited {
text-decoration: underline
}
a[href]:after {
content: " (" attr(href) ")"
}
p {
orphans: 3;
widows: 3
}
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
:after,
:before {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
a {
text-decoration: none;
color: #fff
}
h1,
h4 {
font-weight: bold;
line-height: 1.1;
color: #fff
}
h1 {
margin-top: 20px;
margin-bottom: 10px;
font-size: 2em
}
h4 {
margin-top: 10px;
margin-bottom: 10px;
font-size: 18px
}
p {
margin: 0 0 10px
}
.text-center {
text-align: center
}
ul {
margin-top: 0;
margin-bottom: 10px
}
.container {
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto
}
@media (min-width:768px) {
.container {
width: 100%
}
}
@media (min-width:992px) {
.container {
width: 90%
}
}
@media (min-width:1400px) {
.container {
width: 70%
}
}
.panel {
width: 100%;
margin: 20px;
background-color: #1e1e1e;
border-radius: 4px;
border-top:2px solid;
box-shadow:0 3px 6px rgba(0, 0, 0, .16),
0 3px 6px rgba(0, 0, 0, .23);
-webkit-box-shadow:0 3px 6px rgba(0, 0, 0, .16),
0 3px 6px rgba(0, 0, 0, .23)
}
.panel-heading {
padding: 20px 20px 15px 20px;
border-top:2px solid;
box-shadow:0 3px 6px rgba(0, 0, 0, .16),
0 3px 6px rgba(0, 0, 0, .23);
-webkit-box-shadow:0 3px 6px rgba(0, 0, 0, .16),
0 3px 6px rgba(0, 0, 0, .23)
}
header.page-header {
margin-top: 20px
}
.list-group {
margin-top: 20px;
margin-bottom: 20px
}
.list-group-item {
padding: 10px 15px;
margin-bottom: -1px;
background-color: #1e1e1e
}
th {
overflow: auto;
padding-top: 6px;
padding-bottom: 6px;
text-align: start;
font-weight: normal;
}
th.table-title {
font-weight: bold;
}
table {
width: 90%;
justify: center;
margin-left: 5%;
}