2018-03-24 16:45:51 +00:00
|
|
|
/* ------------------
|
|
|
|
COLORS BASED ON
|
|
|
|
KDE BREEZE DARK
|
|
|
|
------------------ */
|
|
|
|
|
2018-03-29 23:22:08 +00:00
|
|
|
.button.is-breeze {
|
|
|
|
background-color: #2980b9;
|
|
|
|
border-color: transparent;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button.is-breeze.is-hovered,
|
|
|
|
.button.is-breeze:hover {
|
|
|
|
background-color: #3daee9;
|
|
|
|
border-color: transparent;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button.is-breeze.is-active,
|
|
|
|
.button.is-breeze:active {
|
|
|
|
background-color: #3daee9;
|
|
|
|
border-color: transparent;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button.is-breeze.is-focus,
|
|
|
|
.button.is-breeze:focus {
|
|
|
|
border-color: transparent;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2018-01-26 17:34:20 +00:00
|
|
|
html {
|
|
|
|
background-color: #232629;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section {
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-list a {
|
|
|
|
color: #2980b9;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-list a:hover {
|
|
|
|
color: #3daee9;
|
|
|
|
background-color: #4d4d4d;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-list a.is-active {
|
|
|
|
color: #eff0f1;
|
|
|
|
background-color: #2980b9;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pagination a {
|
|
|
|
color: #eff0f1;
|
|
|
|
border-color: #4d4d4d;
|
|
|
|
background-color: #31363b;
|
|
|
|
}
|
|
|
|
|
2018-03-24 16:45:51 +00:00
|
|
|
.pagination-link:hover,
|
|
|
|
.pagination-next:hover,
|
|
|
|
.pagination-previous:hover {
|
2018-01-26 17:34:20 +00:00
|
|
|
color: #eff0f1;
|
|
|
|
border-color: #3daee9;
|
|
|
|
background-color: #31363b;
|
|
|
|
}
|
|
|
|
|
|
|
|
.label {
|
|
|
|
color: #bdc3c7;
|
|
|
|
}
|
|
|
|
|
2018-03-24 16:45:51 +00:00
|
|
|
.menu-list li ul {
|
|
|
|
border-left-color: #898b8d;
|
|
|
|
}
|
|
|
|
|
2018-03-29 23:47:31 +00:00
|
|
|
.image-container {
|
2018-03-28 12:28:17 +00:00
|
|
|
display: flex;
|
2018-03-24 16:45:51 +00:00
|
|
|
width: 200px;
|
|
|
|
height: 200px;
|
|
|
|
margin: 9px;
|
2018-01-26 17:34:20 +00:00
|
|
|
background-color: #31363b;
|
2018-03-24 16:45:51 +00:00
|
|
|
overflow: hidden;
|
|
|
|
align-items: center;
|
2018-01-26 17:34:20 +00:00
|
|
|
}
|
|
|
|
|
2018-03-29 23:47:31 +00:00
|
|
|
.image-container .title {
|
2018-03-24 16:45:51 +00:00
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
2018-03-29 23:47:31 +00:00
|
|
|
.image-container .image {
|
2018-03-24 16:45:51 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2018-03-29 23:47:31 +00:00
|
|
|
.image-container {
|
2018-03-24 16:45:51 +00:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2018-03-29 23:47:31 +00:00
|
|
|
.image-container .file-checkbox {
|
|
|
|
position: absolute;
|
|
|
|
top: .75rem;
|
|
|
|
left: .75rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.image-container .controls {
|
2018-03-29 23:22:08 +00:00
|
|
|
display: flex;
|
2018-03-24 16:45:51 +00:00
|
|
|
position: absolute;
|
2018-03-29 23:22:08 +00:00
|
|
|
top: .75rem;
|
|
|
|
right: .75rem;
|
|
|
|
}
|
|
|
|
|
2018-03-29 23:47:31 +00:00
|
|
|
.image-container .controls .button {
|
2018-03-29 23:22:08 +00:00
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
2018-03-29 23:47:31 +00:00
|
|
|
.image-container .controls .button:not(:active):not(:hover) {
|
2018-03-30 02:39:53 +00:00
|
|
|
color: #fff;
|
2018-03-28 11:36:28 +00:00
|
|
|
background-color: rgba(49, 54, 59, .75);
|
|
|
|
}
|
|
|
|
|
2018-03-29 23:47:31 +00:00
|
|
|
.image-container .name {
|
2018-03-28 11:36:28 +00:00
|
|
|
position: absolute;
|
2018-03-29 23:22:08 +00:00
|
|
|
left: .75rem;
|
|
|
|
bottom: .75rem;
|
|
|
|
right: .75rem;
|
2018-03-28 11:36:28 +00:00
|
|
|
background-color: rgba(49, 54, 59, .75);
|
|
|
|
color: #eff0f1;
|
2018-03-29 23:22:08 +00:00
|
|
|
padding: .25rem;
|
2018-03-28 11:36:28 +00:00
|
|
|
font-size: .75rem;
|
|
|
|
}
|
|
|
|
|
2018-03-29 23:47:31 +00:00
|
|
|
.image-container .name span {
|
2018-03-28 11:36:28 +00:00
|
|
|
font-weight: 800;
|
2018-03-24 16:45:51 +00:00
|
|
|
}
|
|
|
|
|
2018-03-28 11:36:28 +00:00
|
|
|
/* Make extra info appear on hover only on non-touch devices */
|
|
|
|
|
2018-03-29 23:47:31 +00:00
|
|
|
.no-touch .image-container .file-checkbox {
|
|
|
|
opacity: .25;
|
|
|
|
transition: opacity .25s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-touch .image-container .controls,
|
|
|
|
.no-touch .image-container .name {
|
2018-03-28 11:36:28 +00:00
|
|
|
opacity: 0;
|
|
|
|
transition: opacity .25s;
|
|
|
|
}
|
|
|
|
|
2018-03-29 23:47:31 +00:00
|
|
|
.no-touch .image-container:hover .file-checkbox,
|
|
|
|
.no-touch .image-container:hover .controls,
|
|
|
|
.no-touch .image-container:hover .name {
|
2018-03-28 11:36:28 +00:00
|
|
|
opacity: 1;
|
|
|
|
}
|
2018-03-29 23:22:08 +00:00
|
|
|
|
|
|
|
#page {
|
|
|
|
/* fix overflow issue with flex */
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-container {
|
|
|
|
overflow-x: auto;
|
|
|
|
}
|
|
|
|
|
2018-03-31 14:32:27 +00:00
|
|
|
.table {
|
|
|
|
color: #bdc3c7;
|
|
|
|
background-color: #31363b;
|
|
|
|
font-size: .75rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table tr:hover,
|
|
|
|
.table.is-striped tbody tr:nth-child(2n) {
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table.is-striped tbody tr:hover,
|
|
|
|
.table.is-striped tbody tr:nth-child(2n):hover,
|
|
|
|
.tag {
|
|
|
|
background-color: #4d4d4d;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table thead td,
|
|
|
|
.table thead th {
|
|
|
|
color: #eff0f1;
|
|
|
|
background-color: #ff3860;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table th {
|
|
|
|
color: #eff0f1;
|
|
|
|
height: 2.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table td,
|
|
|
|
.table th {
|
|
|
|
border: 0;
|
|
|
|
white-space: nowrap;
|
2018-03-29 23:22:08 +00:00
|
|
|
}
|