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/static/css/styles.css

92 lines
1.6 KiB
CSS
Raw Normal View History

2019-11-28 22:00:49 +00:00
section {
overflow-x: auto;
}
nav, nav > div, nav form {
display: flex;
align-items: center;
}
a.navbar-item, a.navbar-item:hover {
color: whitesmoke;
}
a.navbar-item:hover {
background-color: #292929;
}
th.error {
color: red;
}
.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-11 17:43:14 +00:00
background-color: rgba(0, 209, 178, 0.2);
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-11 17:43:14 +00:00
background-color: rgba(50, 115, 220, 0.2);
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-11 17:43:14 +00:00
background-color: rgba(32, 156, 238, 0.2);
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-11 17:43:14 +00:00
background-color: rgba(35, 209, 96, 0.2);
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-11 17:43:14 +00:00
background-color: rgba(255, 221, 87, 0.2);
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-11 17:43:14 +00:00
background-color: rgba(255, 56, 96, 0.2);
2019-11-28 22:00:49 +00:00
border-color: rgba(255, 56, 96, 0.1);
white-space: nowrap;
}
.checkbox {
margin: 1.2rem 1.2rem 0;
}
#quick_scroll {
float: right;
margin-top: -2rem;
}
.favicon {
width: 16px;
2019-12-11 17:43:14 +00:00
height: 16px;
2019-11-28 22:00:49 +00:00
position: relative;
top: 2px;
}
2019-12-09 11:10:57 +00:00
.fa-button {
padding: 0;
cursor: pointer;
background: none;
border: none;
}