2020-12-28 13:48:47 +02:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
font-size: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
input.form-control {
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar .logo-container {
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2021-01-29 20:45:11 +02:00
|
|
|
.navbar .logo-text {
|
|
|
|
font-size: 2.2em;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-left: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2020-12-28 13:48:47 +02:00
|
|
|
.navbar .logo {
|
|
|
|
height: 50px;
|
2021-01-29 20:45:11 +02:00
|
|
|
} */
|
|
|
|
|
|
|
|
.navbar .navbar-item img {
|
|
|
|
max-height: 3em;
|
2020-12-28 13:48:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.main {
|
2021-05-26 15:53:27 +02:00
|
|
|
padding: 2rem 3rem;
|
2020-12-28 13:48:47 +02:00
|
|
|
}
|
2020-12-29 20:04:57 +02:00
|
|
|
|
|
|
|
table.table .nowrap {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.table .stretch {
|
|
|
|
width: 100%;
|
2021-05-17 17:02:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
table.table th .sort-button i {
|
|
|
|
margin-left: 0.5rem;
|
2021-05-26 15:53:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2021-06-04 18:09:09 +02:00
|
|
|
.footer .content {
|
2021-05-26 15:53:27 +02:00
|
|
|
opacity: 0.5;
|
2021-07-04 17:17:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ul li {
|
|
|
|
list-style-type: disc;
|
|
|
|
}
|
|
|
|
|
2021-08-13 19:59:45 +02:00
|
|
|
ul.pagination-list li {
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
2021-07-24 16:14:07 +02:00
|
|
|
.readable-block {
|
|
|
|
max-width: 740px;
|
2021-08-31 14:46:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
a.heading-anchor {
|
|
|
|
display: inline-block;
|
|
|
|
opacity: 0;
|
|
|
|
width: 1.3em;
|
|
|
|
font-size: 0.7em;
|
|
|
|
margin-left: 0.4em;
|
|
|
|
line-height: 1em;
|
|
|
|
text-decoration: none;
|
|
|
|
transition: opacity 0.3s;
|
|
|
|
}
|
|
|
|
a.heading-anchor:hover,
|
|
|
|
h1:hover a.heading-anchor,
|
|
|
|
h2:hover a.heading-anchor,
|
|
|
|
h3:hover a.heading-anchor,
|
|
|
|
h4:hover a.heading-anchor,
|
|
|
|
h5:hover a.heading-anchor,
|
|
|
|
h6:hover a.heading-anchor {
|
|
|
|
opacity: 1;
|
2021-07-24 16:14:07 +02:00
|
|
|
}
|