1
0
mirror of https://github.com/gilbN/theme.park.git synced 2024-10-11 15:37:12 +02:00
theme.park/CSS/themes/unraid/unraid-base.css

592 lines
16 KiB
CSS
Raw Normal View History

2021-03-09 22:55:16 +01:00
/* dP dP dP */
/* 88 88 88 */
/* d8888P 88d888b. .d8888b. 88d8b.d8b. .d8888b. 88d888b. .d8888b. 88d888b. 88 .dP */
/* 88 88' `88 88ooood8 88'`88'`88 88ooood8 88' `88 88' `88 88' `88 88888" */
/* 88 88 88 88. ... 88 88 88 88. ... 88. .88 88. .88 88 88 `8b. */
/* dP dP dP `88888P' dP dP dP `88888P' 88 88Y888P' `88888P8 dP dP `YP */
/* 88 */
/* dP */
/* Made by @gilbN */
/* https://github.com/gilbN/theme.park */
2021-03-30 12:33:04 +02:00
* {
2021-07-25 13:43:36 +02:00
outline: none;
2021-03-30 12:33:04 +02:00
}
2021-07-25 13:43:36 +02:00
2021-03-10 20:15:51 +01:00
body {
color: var(--text);
background: var(--main-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2021-03-10 20:15:51 +01:00
}
2021-07-25 13:43:36 +02:00
h1,
h2,
h3,
h4,
h5,
h6,
strong {
color: var(--text-hover);
2021-07-12 22:10:03 +02:00
}
i.fa.fa-fw {
2021-07-25 13:43:36 +02:00
color: var(--text-hover) !important;
2021-07-12 22:10:03 +02:00
}
2021-03-10 20:15:51 +01:00
a,
2021-03-15 19:57:02 +01:00
.blue-text,
a.static,
i.control {
2021-03-10 20:15:51 +01:00
color: var(--link-color);
}
2021-07-11 14:47:27 +02:00
a:hover,
a.static:hover,
i.control:hover {
color: var(--link-color-hover);
}
2021-03-10 20:15:51 +01:00
#template {
background: var(--main-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2021-03-10 20:15:51 +01:00
}
#menu {
2021-03-10 20:12:14 +01:00
background: var(--main-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2021-03-10 20:15:22 +01:00
}
2021-03-10 20:15:51 +01:00
2021-03-10 20:58:38 +01:00
#header .text-left {
2021-07-11 14:47:27 +02:00
border-right: solid medium rgb(var(--accent-color));
2021-03-10 20:58:38 +01:00
}
2021-03-17 19:32:21 +01:00
#header {
2021-03-29 23:23:53 +02:00
background-color: transparent;
2021-03-17 19:32:21 +01:00
}
2021-03-29 23:50:39 +02:00
#header,
#header .text-right a {
2021-03-17 22:07:22 +01:00
color: var(--text) !important;
}
2021-03-29 23:50:39 +02:00
#header .block {
background-color: rgb(0 0 0 / 20%);
border-radius: 0px 0px 0px 25px;
}
2021-03-10 20:15:51 +01:00
#nav-block #nav-item:focus:after,
2021-03-13 23:16:51 +01:00
#nav-block #nav-item:hover:after,
#nav-block #nav-item.active:after {
2021-07-11 14:47:27 +02:00
background: var(--accent-color-hover);
2021-03-09 22:55:16 +01:00
}
2021-03-29 23:50:39 +02:00
2021-03-17 21:50:14 +01:00
#nav-block #nav-item a:hover {
2021-07-11 14:47:27 +02:00
color: var(--text-hover);
2021-03-17 21:50:14 +01:00
}
2021-03-29 23:50:39 +02:00
2021-03-17 21:50:14 +01:00
#nav-block #nav-item a {
2021-07-11 14:47:27 +02:00
color: var(--text);
}
#nav-item.active a {
color: rgb(var(--accent-color)) !important;
}
#nav-item.active a:hover {
color: rgb(var(--accent-color)) !important;
}
textarea {
background: rgb(0 0 0 / 25%);
2021-03-17 21:50:14 +01:00
}
2021-03-10 20:15:51 +01:00
/*DASHBOARD*/
table.share_status.dashboard {
background-color: rgba(0, 0, 0, .15);
border: 1px solid rgba(255, 255, 255, .25);
}
table.share_status.dashboard tr>td.next {
border-top: 1px solid rgba(255, 255, 255, .25);
2021-07-11 14:47:27 +02:00
color: var(--text-hover);
2021-03-10 20:15:51 +01:00
}
span.outer.solid {
background-color: transparent;
}
2021-07-11 00:06:15 +02:00
span.inner {
2021-07-11 14:47:27 +02:00
width: 137px !important;
2021-07-11 00:06:15 +02:00
}
2021-07-25 13:43:36 +02:00
thead.sortable,
thead,
table.tablesorter thead tr th {
color: var(--text-hover);
}
2021-07-11 14:47:27 +02:00
2021-03-10 22:13:34 +01:00
.sys,
.usage-disk,
.usage-bar {
2021-03-10 20:15:51 +01:00
background: rgba(0, 0, 0, .35);
}
.usage-disk>span:first-child {
background-color: #4caf50
}
2021-07-25 13:43:36 +02:00
#db-box3>tbody.smb.share.share1.sortable>tr>td>a {
2021-07-11 14:47:27 +02:00
color: var(--link-color);
}
2021-07-25 13:43:36 +02:00
#db-box3>tbody.smb.share.share1.sortable>tr>td>a:hover {
2021-07-11 14:47:27 +02:00
color: var(--link-color-hover);
}
2021-03-10 20:15:51 +01:00
.green-text,
.passed,
.green {
color: #4caf50;
}
/*MAIN*/
#title {
border-bottom: 1px solid rgba(255, 255, 255, .25);
background-color: rgba(0, 0, 0, .5);
2021-07-11 14:47:27 +02:00
color: var(--text-hover);
2021-03-10 20:15:51 +01:00
}
table {
background-color: rgb(0 0 0 / 25%);
}
table.disk_status thead tr:first-child td,
table tbody tr.tr_last,
table.share_status tbody tr:nth-child(even),
table.share_status thead tr:first-child td,
table.tablesorter thead tr th,
table.tablesorter tbody tr:nth-child(even),
table.tablesorter thead tr .tablesorter-headerAsc,
table.tablesorter thead tr .tablesorter-headerDesc {
background-color: rgba(0, 0, 0, .25);
}
table.disk_status tbody tr:nth-child(even) {
background-color: rgba(0, 0, 0, .25);
}
table.disk_status thead tr:last-child {
2021-03-11 22:04:25 +01:00
border-bottom: 1px solid rgb(160, 160, 160);
2021-03-10 20:15:51 +01:00
}
table.tablesorter thead tr {
border-bottom: rgba(255, 255, 255, .25) 1px solid;
}
table tbody tr.tr_last {
border-top: 1px solid rgba(255, 255, 255, .25);
}
2021-03-10 21:40:55 +01:00
table.share_status tbody tr.warn {
color: #e68a00 !important;
background-color: #feefb3 !important;
}
2021-03-10 20:15:51 +01:00
/*BUTTON*/
input[type=button],
input[type=reset],
input[type=submit],
button,
button[type=button],
2021-03-10 22:13:34 +01:00
a.button,
2021-03-11 21:26:29 +01:00
.sweet-alert button,
2021-03-12 19:00:26 +01:00
#template button[type=button],
2021-03-29 23:50:39 +02:00
#template button {
2021-03-11 20:39:05 +01:00
color: var(--button-text);
text-shadow: var(--text-shadow) var(--text-shadow-color);
background: linear-gradient(90deg, var(--button-color) 0, var(--button-color)) 0 0 no-repeat, linear-gradient(90deg, var(--button-color) 0, var(--button-color)) 0 100% no-repeat, linear-gradient(0deg, var(--button-color) 0, var(--button-color)) 0 100% no-repeat, linear-gradient(0deg, var(--button-color) 0, var(--button-color)) 100% 100% no-repeat;
background: -webkit-gradient(linear, left top, right top, from(var(--button-color)), to(var(--button-color))) 0 0 no-repeat, -webkit-gradient(linear, left top, right top, from(var(--button-color)), to(var(--button-color))) 0 100% no-repeat, -webkit-gradient(linear, left bottom, left top, from(var(--button-color)), to(var(--button-color))) 0 100% no-repeat, -webkit-gradient(linear, left bottom, left top, from(var(--button-color)), to(var(--button-color))) 100% 100% no-repeat;
background-size: 100% 2px, 100% 2px, 2px 100%, 2px 100%;
border: 1px solid transparent;
2021-03-10 20:15:51 +01:00
}
input:hover[type=button],
input:hover[type=reset],
input:hover[type=submit],
button:hover,
button:hover[type=button],
2021-03-10 22:13:34 +01:00
a.button:hover,
2021-03-11 21:26:29 +01:00
.sweet-alert button:hover,
2021-03-12 19:00:26 +01:00
#template button[type=button]:hover,
#template button:hover {
2021-07-11 14:47:27 +02:00
color: var(--button-text-hover);
2021-03-11 20:39:05 +01:00
text-shadow: var(--text-shadow) var(--button-color-hover);
box-shadow: var(--box-shadow) var(--button-color-hover);
background-color: var(--button-color-hover);
background: -webkit-gradient(linear, left top, right top, from(var(--button-color-hover)), to(var(--button-color-hover)));
background: linear-gradient(90deg, var(--button-color-hover) 0, var(--button-color-hover));
2021-03-10 20:15:51 +01:00
}
2021-03-29 23:50:39 +02:00
.swal-button {
2021-03-15 19:57:02 +01:00
color: var(--button-text) !important;
text-shadow: var(--text-shadow) var(--text-shadow-color) !important;
background: linear-gradient(90deg, var(--button-color) 0, var(--button-color)) 0 0 no-repeat, linear-gradient(90deg, var(--button-color) 0, var(--button-color)) 0 100% no-repeat, linear-gradient(0deg, var(--button-color) 0, var(--button-color)) 0 100% no-repeat, linear-gradient(0deg, var(--button-color) 0, var(--button-color)) 100% 100% no-repeat !important;
background: -webkit-gradient(linear, left top, right top, from(var(--button-color)), to(var(--button-color))) 0 0 no-repeat, -webkit-gradient(linear, left top, right top, from(var(--button-color)), to(var(--button-color))) 0 100% no-repeat, -webkit-gradient(linear, left bottom, left top, from(var(--button-color)), to(var(--button-color))) 0 100% no-repeat, -webkit-gradient(linear, left bottom, left top, from(var(--button-color)), to(var(--button-color))) 100% 100% no-repeat !important;
background-size: 100% 2px, 100% 2px, 2px 100%, 2px 100% !important;
2021-03-29 23:50:39 +02:00
border: 1px solid transparent !important;
2021-03-15 19:57:02 +01:00
}
.swal-button:hover {
2021-07-11 14:47:27 +02:00
color: var(--button-text-hover) !important;
2021-03-15 19:57:02 +01:00
text-shadow: var(--text-shadow) var(--button-color-hover) !important;
box-shadow: var(--box-shadow) var(--button-color-hover) !important;
background-color: var(--button-color-hover) !important;
background: -webkit-gradient(linear, left top, right top, from(var(--button-color-hover)), to(var(--button-color-hover))) !important;
background: linear-gradient(90deg, var(--button-color-hover) 0, var(--button-color-hover)) !important;
}
2021-03-10 20:15:51 +01:00
.switch-button-background.checked {
background-color: #4caf50 !important;
}
.switch-button-label.on {
2021-03-29 23:59:15 +02:00
color: #4caf50 !important;
2021-03-10 20:15:51 +01:00
}
/* BAR GAUGES */
.usage-disk {
color: white;
}
/* USERS */
div.user-list {
border: 1px solid rgba(255, 255, 255, .15);
background-color: rgba(255, 255, 255, .05);
}
/* SETTINGS */
label.checkbox input:checked~.checkmark {
background: var(--button-color);
}
.logLine {
background: transparent;
}
.logLine.spacing {
color: var(--text);
background: var(--modal-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2021-03-10 20:15:51 +01:00
}
#sb-info-inner,
#sb-loading-inner,
2021-07-12 22:10:03 +02:00
div.sb-message {
color: var(--text);
background-color: transparent;
}
2021-03-10 20:15:51 +01:00
#sb-title,
#sb-title-inner {
2021-07-12 22:10:03 +02:00
color: var(--text-hover);
2021-03-10 20:15:51 +01:00
background-color: transparent;
}
2021-07-12 22:10:03 +02:00
2021-03-10 20:15:51 +01:00
#sb-wrapper {
border: 1px rgba(0, 0, 0, 0) solid;
color: var(--text);
background: var(--modal-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2021-03-10 20:15:51 +01:00
}
#sb-loading,
#sb-body-inner,
iframe {
color: var(--text);
background: transparent !important;
}
2021-07-11 14:47:27 +02:00
div.Panel i.PanelIcon {
color: var(--text-hover);
}
2021-03-10 20:58:38 +01:00
/* PLUGINS */
div.tab [type=radio]:checked+label,
div.tab [type=radio]+label:hover {
2021-07-11 14:47:27 +02:00
border: 1px solid var(--accent-color-hover);
2021-07-12 22:10:03 +02:00
color: var(--text-hover);
}
div.tab [type=radio]+label {
border: 1px solid rgb(255 255 255 / 25%);
background-color: rgb(0 0 0 / 50%);
opacity: 0.5;
2021-03-10 20:58:38 +01:00
}
2021-03-10 20:15:51 +01:00
/* FOOTER */
#footer {
2021-03-09 23:34:24 +01:00
color: var(--text);
background: var(--main-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2021-03-09 23:34:24 +01:00
}
2021-03-10 20:15:51 +01:00
/* CA */
.ca_holderDocker {
2021-07-11 14:47:27 +02:00
background-color: rgb(0 0 0 / 10%) !important;
border-color: rgb(0 0 0 / 25%) !important;
}
2021-07-25 13:43:36 +02:00
2021-07-11 14:47:27 +02:00
.ca_holderDocker::before {
color: rgb(255 255 255 / 40%) !important;
2021-03-10 20:15:51 +01:00
}
2021-07-11 14:47:27 +02:00
.selectedMenu {
color: rgb(var(--accent-color)) !important;
}
2021-07-25 13:43:36 +02:00
2021-03-10 20:15:51 +01:00
.hoverMenu {
2021-07-11 14:47:27 +02:00
color: var(--link-color-hover) !important;
}
2021-07-25 13:43:36 +02:00
.ca_descriptionArea:hover,
a.ca_repoPopup:hover {
2021-07-15 18:34:09 +02:00
color: var(--button-text-hover) !important;
2021-03-10 20:15:51 +01:00
}
2021-03-10 22:02:12 +01:00
.ca_templatesDisplay .ca_holderFav {
2021-07-25 13:43:36 +02:00
background: rgb(var(--accent-color), .7) !important;
color: var(--label-text-color) !important;
2021-03-10 20:15:51 +01:00
}
2021-03-10 20:58:38 +01:00
a.ca_appreadmore:hover {
2021-07-11 14:47:27 +02:00
color: var(--link-color-hover) !important;
2021-03-10 20:58:38 +01:00
}
.ca_bottomLine .appIcons:hover,
.ca_bottomLine .unpinned:hover {
text-decoration: none;
2021-07-11 14:47:27 +02:00
color: var(--link-color-hover) !important;
2021-03-10 20:58:38 +01:00
}
.tooltipster-sidetip.tooltipster-right .tooltipster-box {
2021-07-11 14:47:27 +02:00
border-left: 3px solid rgb(var(--accent-color)) !important;
2021-03-10 22:02:12 +01:00
}
2021-03-10 22:13:34 +01:00
2021-03-10 22:02:12 +01:00
.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
2021-07-11 14:47:27 +02:00
border-top: 3px solid rgb(var(--accent-color)) !important;
2021-03-10 20:58:38 +01:00
}
2021-03-10 22:13:34 +01:00
2021-03-12 19:00:26 +01:00
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
2021-07-11 14:47:27 +02:00
border-top-color: rgb(var(--accent-color)) !important;
2021-03-12 19:00:26 +01:00
}
2021-03-10 20:58:38 +01:00
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
2021-07-11 14:47:27 +02:00
border-right-color: rgb(var(--accent-color)) !important;
2021-03-10 22:02:12 +01:00
}
2021-03-10 22:13:34 +01:00
2021-03-12 19:00:26 +01:00
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border,
.tooltipster-sidetip.tooltipster-top .tooltipster-box {
2021-07-11 14:47:27 +02:00
border-bottom-color: rgb(var(--accent-color)) !important;
2021-03-10 20:58:38 +01:00
}
2021-03-10 22:13:34 +01:00
2021-03-10 20:58:38 +01:00
.appIconsPopUp:hover {
2021-07-11 14:47:27 +02:00
color: var(--accent-color-hover) !important;
2021-03-10 20:58:38 +01:00
}
a.popUpLink:hover {
2021-03-10 22:02:12 +01:00
color: var(--accent-color-hover) !important;
2021-03-10 20:58:38 +01:00
}
2021-07-11 14:47:27 +02:00
li.caMenuItem {
color: var(--link-color);
}
li.caMenuItem:hover {
color: var(--link-color-hover);
}
2021-03-10 20:15:51 +01:00
/* AZURE THEME*/
div.frame,
div.tabs {
2021-03-09 22:55:16 +01:00
background: var(--main-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2021-03-10 21:21:12 +01:00
}
/*DROPDOWN MENU*/
.dropdown-menu {
2021-07-11 14:47:27 +02:00
background: var(--drop-down-menu-bg) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2021-03-10 21:21:12 +01:00
}
.dropdown-menu a {
2021-04-05 00:45:55 +02:00
color: var(--text) !important;
2021-03-10 21:21:12 +01:00
}
.dropdown-menu .divider {
2021-04-05 00:45:55 +02:00
background-color: rgb(255 255 255 / 10%) !important;
border-bottom: 1px solid rgb(255 255 255 / 10%) !important;
2021-03-10 21:21:12 +01:00
}
.dropdown-menu li>a:hover,
.dropdown-menu li>a:focus,
.dropdown-submenu:hover>a {
2021-04-05 00:45:55 +02:00
color: var(--text-hover) !important;
background: rgb(255 255 255 / 10%) !important;
2021-03-10 21:21:12 +01:00
}
/*VM MANAGER*/
div.shade-black {
2021-03-10 21:40:55 +01:00
background-color: rgb(0 0 0 / 15%) !important;
}
::placeholder {
color: var(--text-muted) !important;
}
:-ms-input-placeholder {
color: var(--text-muted) !important;
}
::-webkit-input-placeholder {
color: var(--text-muted) !important;
2021-03-10 22:13:34 +01:00
}
/* MODAL */
2021-03-12 19:00:26 +01:00
/* .sweet-alert {
2021-03-10 22:13:34 +01:00
background: var(--modal-bg-color) !important;
2021-03-12 19:00:26 +01:00
} */
.showSweetAlert:not([data-has-cancel-button="false"]),
2021-03-15 19:57:02 +01:00
.swal-overlay--show-modal .swal-modal {
2021-03-12 19:00:26 +01:00
background: var(--modal-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2021-03-10 22:13:34 +01:00
}
.sweet-alert h2,
2021-03-15 19:57:02 +01:00
.sweet-alert p,
2021-03-21 19:15:02 +01:00
.swal-title,
.swal-content,
.swal-content select {
color: var(--text) !important;
2021-03-10 23:29:54 +01:00
}
/*HELP TEXT*/
blockquote {
2021-07-12 22:10:03 +02:00
border-top: 2px solid rgb(0 0 0 / 25%);
border-bottom: 2px solid rgb(0 0 0 / 25%);
2021-03-10 23:29:54 +01:00
color: var(--text);
2021-07-12 22:10:03 +02:00
background-color: rgb(0 0 0 / 10%);
2021-03-13 23:16:51 +01:00
}
/* MY SERVERS */
.UnraidUPC .--hasBanner-custom .UnraidUPC-dropdown {
2021-07-28 18:14:02 +02:00
background: var(--drop-down-menu-bg) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2021-03-13 23:16:51 +01:00
--tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 50%) !important;
2021-03-29 23:50:39 +02:00
-webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 transparent), var(--tw-ring-shadow, 0 0 transparent), var(--tw-shadow);
box-shadow: var(--tw-ring-offset-shadow, 0 0 transparent), var(--tw-ring-shadow, 0 0 transparent), var(--tw-shadow);
2021-03-13 23:16:51 +01:00
color: var(--text) !important;
}
2021-03-29 23:50:39 +02:00
2021-03-13 23:16:51 +01:00
#UnraidUPC .text-beta {
color: var(--text) !important;
}
2021-03-29 23:50:39 +02:00
.UnraidUPC-dropdown a,
.UnraidUPC-dropdown button {
2021-03-13 23:16:51 +01:00
color: var(--text) !important;
}
2021-03-29 23:50:39 +02:00
.UnraidUPC-dropdown .btn-emphasize,
.UnraidUPC-dropdown a:focus,
.UnraidUPC-dropdown a:hover,
.UnraidUPC-dropdown button:focus,
.UnraidUPC-dropdown button:hover {
background-image: -webkit-gradient(linear, left top, right top, from(var(--tw-gradient-stops)));
background-image: linear-gradient(90deg, var(--tw-gradient-stops));
2021-07-11 14:47:27 +02:00
--tw-gradient-from: var(--accent-color-hover);
--tw-gradient-stops: var(--tw-gradient-from), rgb(var(--accent-color)), rgba(226, 40, 40, 0);
--tw-gradient-to: var(--accent-color-hover);
2021-03-13 23:16:51 +01:00
--tw-text-opacity: 1;
2021-03-29 23:50:39 +02:00
color: rgba(255, 255, 255, var(--tw-text-opacity));
2021-03-13 23:16:51 +01:00
outline: 0;
}
unraid-authed::part(div[data-v-050c892a] > button) {
background: pink !important;
2021-03-30 12:33:04 +02:00
}
2021-04-05 00:45:55 +02:00
/* Edit template*/
#contDescription {
background: rgb(0 0 0 / 25%);
padding: 1%;
2021-07-25 13:43:36 +02:00
border-radius: 5px;
2021-07-11 14:47:27 +02:00
}
dt {
color: var(--text-hover);
2021-04-05 00:45:55 +02:00
}