This repository has been archived on 2023-10-01. You can view files and clone it, but cannot push or open issues or pull requests.
PyNyaaTa/pynyaata/static/css/styles.css

131 lines
2.4 KiB
CSS
Raw Normal View History

2020-12-04 08:23:05 +00:00
html {
height: 100%;
}
body {
position: relative;
min-height: 100%;
padding-bottom: 1rem;
}
footer {
position: absolute;
bottom: 0;
width: 100%;
text-align: center;
font-size: small;
margin: 0.5rem;
color: #7a7a7a;
}
2019-11-28 22:00:49 +00:00
section {
overflow-x: auto;
2019-12-15 15:22:39 +00:00
padding-top: 2rem !important;
2019-11-28 22:00:49 +00:00
}
2019-12-15 17:34:20 +00:00
nav, nav > div {
2019-11-28 22:00:49 +00:00
display: flex;
align-items: center;
}
a.navbar-item, a.navbar-item:hover {
color: whitesmoke;
}
a.navbar-item:hover {
background-color: #292929;
}
2019-12-12 21:55:16 +00:00
div.navbar-end {
flex-basis: min-content;
}
2019-11-28 22:00:49 +00:00
th.error {
color: red;
}
2019-12-12 21:55:16 +00:00
img.favicon {
width: 16px;
height: 16px;
position: relative;
top: 2px;
}
button.fa-button {
padding: 0;
cursor: pointer;
border: none;
}
label.checkbox {
margin: 1.2rem 1.2rem 0;
}
2019-11-28 22:00:49 +00:00
.hidden {
display: none;
}
.table td:last-child {
white-space: nowrap;
}
2019-12-09 11:10:57 +00:00
.table td:last-child form {
display: inline;
}
2019-11-28 22:00:49 +00:00
.table td.is-primary, .table tr.is-primary {
2019-12-13 18:57:53 +00:00
background-color: rgba(0, 209, 178, 0.2) !important;
2019-11-28 22:00:49 +00:00
border-color: rgba(0, 209, 178, 0.1);
white-space: nowrap;
}
.table td.is-link, .table tr.is-link {
2019-12-13 18:57:53 +00:00
background-color: rgba(50, 115, 220, 0.2) !important;
2019-11-28 22:00:49 +00:00
border-color: rgba(50, 115, 220, 0.1);
white-space: nowrap;
}
.table td.is-info, .table tr.is-info {
2019-12-13 18:57:53 +00:00
background-color: rgba(32, 156, 238, 0.2) !important;
2019-11-28 22:00:49 +00:00
border-color: rgba(32, 156, 238, 0.1);
white-space: nowrap;
}
.table td.is-success, .table tr.is-success {
2019-12-13 18:57:53 +00:00
background-color: rgba(35, 209, 96, 0.2) !important;
2019-11-28 22:00:49 +00:00
border-color: rgba(35, 209, 96, 0.1);
white-space: nowrap;
}
.table td.is-warning, .table tr.is-warning {
2019-12-13 18:57:53 +00:00
background-color: rgba(255, 221, 87, 0.2) !important;
2019-11-28 22:00:49 +00:00
border-color: rgba(255, 221, 87, 0.1);
white-space: nowrap;
}
.table td.is-danger, .table tr.is-danger {
2019-12-13 18:57:53 +00:00
background-color: rgba(255, 56, 96, 0.2) !important;
2019-11-28 22:00:49 +00:00
border-color: rgba(255, 56, 96, 0.1);
white-space: nowrap;
}
2020-12-04 08:23:05 +00:00
.quick-scroll {
2019-12-15 15:22:39 +00:00
margin-bottom: 1rem;
2019-11-28 22:00:49 +00:00
}
2019-12-15 17:04:16 +00:00
.table.is-hoverable tbody tr:not(.is-selected):hover {
background-color: #f1f1f1 !important;
}
2020-12-02 16:23:22 +00:00
@media (prefers-color-scheme: dark) {
.table.is-hoverable tbody tr:not(.is-selected):hover {
background-color: #333 !important;
}
2021-07-10 18:59:36 +00:00
.select > select {
border-color: #363636 !important;
background-color: #0a0a0a !important;
color: #dbdbdb !important;
}
2020-12-02 16:23:22 +00:00
}