2020-07-16 01:59:14 +02:00
|
|
|
body {
|
|
|
|
--text: #fff;
|
|
|
|
--bg-main: #3c4043;
|
|
|
|
--bg-secondary: #292a2d;
|
2020-07-15 11:04:52 +02:00
|
|
|
--active: #ff5b56;
|
2019-09-29 15:04:24 +02:00
|
|
|
--space: 5px;
|
2020-02-09 01:08:04 +01:00
|
|
|
--danger: #f04141;
|
2020-07-15 11:04:52 +02:00
|
|
|
--danger-light: #f9d0d5;
|
2020-07-16 01:59:14 +02:00
|
|
|
--dark-grey: #767676;
|
|
|
|
--light-grey: #c3c3c3;
|
|
|
|
}
|
|
|
|
|
|
|
|
body.light-theme {
|
|
|
|
--text: #000;
|
|
|
|
--bg-main: #e3e7ea;
|
|
|
|
--bg-secondary: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.light-theme.popup,
|
|
|
|
.light-theme .popup {
|
|
|
|
background-color: var(--bg-secondary);
|
2019-09-29 15:04:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
margin: 0;
|
2020-07-15 11:04:52 +02:00
|
|
|
max-width: 400px;
|
2020-04-02 04:26:18 +02:00
|
|
|
margin: auto;
|
2020-04-25 16:43:43 +02:00
|
|
|
min-height: 572px;
|
2020-05-19 15:48:03 +02:00
|
|
|
font-family: Sans-Serif;
|
2020-07-16 01:59:14 +02:00
|
|
|
background-color: var(--bg-secondary);
|
|
|
|
color: var(--text);
|
2020-03-21 10:34:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.popup {
|
2020-04-25 10:31:27 +02:00
|
|
|
width: 300px;
|
2020-05-08 14:40:07 +02:00
|
|
|
min-height: auto;
|
2020-03-21 10:34:32 +01:00
|
|
|
overflow: hidden;
|
2020-07-16 01:59:14 +02:00
|
|
|
background-color: var(--bg-main);
|
2019-09-29 15:04:24 +02:00
|
|
|
}
|
|
|
|
|
2020-04-02 04:26:18 +02:00
|
|
|
input {
|
|
|
|
appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
}
|
|
|
|
|
2019-09-29 15:04:24 +02:00
|
|
|
header {
|
2020-07-16 01:59:14 +02:00
|
|
|
background-color: var(--bg-main);
|
|
|
|
color: var(--text);
|
2019-09-29 15:04:24 +02:00
|
|
|
display: flex;
|
|
|
|
padding: var(--space);
|
|
|
|
}
|
|
|
|
|
|
|
|
header .logo-container {
|
2020-05-19 15:48:03 +02:00
|
|
|
width: 100%;
|
|
|
|
margin: var(--space) 0 var(--space) 0;
|
|
|
|
display: flex;
|
2020-07-15 11:04:52 +02:00
|
|
|
align-items: center;
|
2019-09-29 15:04:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
header .logo-container img {
|
2020-05-19 15:48:03 +02:00
|
|
|
height: 85px;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
header .logo-container h1 {
|
|
|
|
font-size: 25px;
|
|
|
|
float: left;
|
|
|
|
margin-left: 15px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
2020-05-20 01:10:38 +02:00
|
|
|
header .privacy {
|
2020-05-19 15:48:03 +02:00
|
|
|
letter-spacing: 0.13em;
|
2019-09-29 15:04:24 +02:00
|
|
|
}
|
|
|
|
|
2020-05-20 01:10:38 +02:00
|
|
|
header .version {
|
2020-05-19 15:48:03 +02:00
|
|
|
font-size: 8.5px;
|
2019-09-29 15:04:24 +02:00
|
|
|
font-weight: bold;
|
2020-05-20 01:10:38 +02:00
|
|
|
position: absolute;
|
|
|
|
top: var(--space);
|
|
|
|
right: var(--space);
|
2019-09-29 15:04:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 14px;
|
2020-07-12 03:26:48 +02:00
|
|
|
margin: 7px auto;
|
2020-02-11 23:35:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
i {
|
|
|
|
font-size: 12px;
|
2019-09-29 15:04:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
clear: both;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: normal;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1,
|
|
|
|
h2 {
|
2020-07-16 01:59:14 +02:00
|
|
|
color: var(--text);
|
2019-09-29 15:04:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer a.button {
|
|
|
|
margin: var(--space);
|
|
|
|
}
|
|
|
|
|
2020-07-15 11:04:52 +02:00
|
|
|
input[type="url"],
|
|
|
|
input[type="text"],
|
|
|
|
select {
|
2019-10-07 13:59:31 +02:00
|
|
|
width: 100%;
|
2020-03-29 05:16:32 +02:00
|
|
|
box-sizing: border-box;
|
2020-05-20 01:10:38 +02:00
|
|
|
margin-bottom: var(--space);
|
2020-07-16 01:59:14 +02:00
|
|
|
background-color: var(--bg-main);
|
|
|
|
border-style: inset;
|
|
|
|
color: var(--text);
|
2019-10-07 13:59:31 +02:00
|
|
|
}
|
|
|
|
|
2020-07-15 11:04:52 +02:00
|
|
|
input[type="url"] {
|
2020-03-29 05:16:32 +02:00
|
|
|
padding: 1px 2px;
|
|
|
|
}
|
|
|
|
|
2020-07-15 11:04:52 +02:00
|
|
|
input[type="checkbox"] {
|
2019-09-29 15:04:24 +02:00
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
2020-07-15 11:04:52 +02:00
|
|
|
input[type="radio"] {
|
2020-07-12 03:26:48 +02:00
|
|
|
appearance: radio;
|
|
|
|
-moz-appearance: radio;
|
|
|
|
-webkit-appearance: radio;
|
|
|
|
}
|
|
|
|
|
2020-07-15 11:04:52 +02:00
|
|
|
input[type="radio"]:checked + label {
|
2020-07-12 03:26:48 +02:00
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
2019-10-07 13:59:31 +02:00
|
|
|
.checkbox-label {
|
2020-07-12 03:26:48 +02:00
|
|
|
margin-left: 5px;
|
2019-09-29 15:04:24 +02:00
|
|
|
background: grey;
|
|
|
|
border-radius: 25px;
|
2020-07-16 01:59:14 +02:00
|
|
|
color: var(--text);
|
2019-09-29 15:04:24 +02:00
|
|
|
cursor: pointer;
|
|
|
|
display: block;
|
|
|
|
float: right;
|
|
|
|
font-weight: bold;
|
|
|
|
height: 30px;
|
|
|
|
position: relative;
|
|
|
|
text-indent: -400px;
|
|
|
|
width: 50px;
|
|
|
|
}
|
|
|
|
|
2019-10-07 13:59:31 +02:00
|
|
|
.checkbox-label:after {
|
2020-07-16 01:59:14 +02:00
|
|
|
background: white;
|
2019-09-29 15:04:24 +02:00
|
|
|
border-radius: 90px;
|
2020-07-15 11:04:52 +02:00
|
|
|
content: "";
|
2019-09-29 15:04:24 +02:00
|
|
|
height: 20px;
|
2020-05-20 01:10:38 +02:00
|
|
|
left: var(--space);
|
2019-09-29 15:04:24 +02:00
|
|
|
position: absolute;
|
2020-05-20 01:10:38 +02:00
|
|
|
top: var(--space);
|
2020-07-15 11:04:52 +02:00
|
|
|
transition: 0.3s;
|
2019-09-29 15:04:24 +02:00
|
|
|
width: 20px;
|
|
|
|
}
|
2020-07-15 11:04:52 +02:00
|
|
|
|
|
|
|
input:checked + label {
|
2019-09-29 15:04:24 +02:00
|
|
|
background: var(--active);
|
|
|
|
}
|
2020-07-15 11:04:52 +02:00
|
|
|
|
|
|
|
input:checked + label:after {
|
2020-05-20 01:10:38 +02:00
|
|
|
left: calc(100% - var(--space));
|
2019-09-29 15:04:24 +02:00
|
|
|
transform: translateX(-100%);
|
|
|
|
}
|
|
|
|
|
2020-07-12 03:26:48 +02:00
|
|
|
.settings-block {
|
2019-09-29 15:04:24 +02:00
|
|
|
display: block;
|
2020-07-12 03:26:48 +02:00
|
|
|
padding: 5px 10px 5px 10px;
|
2019-09-29 15:04:24 +02:00
|
|
|
}
|
|
|
|
|
2020-07-12 03:26:48 +02:00
|
|
|
.settings-block h1 {
|
2019-09-29 15:04:24 +02:00
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
border: var(--active) solid 1px;
|
2020-07-16 01:59:14 +02:00
|
|
|
color: var(--text);
|
|
|
|
stroke: var(--text);
|
2019-09-29 15:04:24 +02:00
|
|
|
display: block;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: bold;
|
|
|
|
margin: var(--space) auto;
|
|
|
|
padding: 10px;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
2020-02-09 01:08:04 +01:00
|
|
|
cursor: pointer;
|
|
|
|
-webkit-transition-duration: 0.4s;
|
|
|
|
transition-duration: 0.4s;
|
2019-09-29 15:04:24 +02:00
|
|
|
}
|
|
|
|
|
2020-03-21 10:34:32 +01:00
|
|
|
.button * {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2019-09-29 15:04:24 +02:00
|
|
|
.button:hover {
|
|
|
|
background-color: var(--active);
|
2020-07-16 01:59:14 +02:00
|
|
|
color: var(--text);
|
|
|
|
stroke: var(--text);
|
2020-02-09 01:08:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.button:active {
|
|
|
|
background-color: var(--active);
|
2020-07-16 01:59:14 +02:00
|
|
|
box-shadow: 0 var(--space) var(--bg-main);
|
2020-02-09 01:08:04 +01:00
|
|
|
transform: translateY(4px);
|
|
|
|
}
|
|
|
|
|
2020-04-25 16:43:43 +02:00
|
|
|
input:invalid {
|
2020-02-09 01:08:04 +01:00
|
|
|
color: var(--danger);
|
|
|
|
border-color: var(--danger);
|
|
|
|
background-color: var(--danger-light);
|
2019-09-29 15:04:24 +02:00
|
|
|
}
|
|
|
|
|
2020-02-11 23:35:58 +01:00
|
|
|
.margin-bottom {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
2020-04-25 10:31:27 +02:00
|
|
|
|
|
|
|
.tab {
|
|
|
|
overflow: hidden;
|
2020-07-16 01:59:14 +02:00
|
|
|
background-color: var(--bg-secondary);
|
2020-11-08 05:16:52 +01:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
2020-11-08 11:07:03 +01:00
|
|
|
width: 400px;
|
2020-11-08 05:16:52 +01:00
|
|
|
z-index: 2;
|
2020-04-25 10:31:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.tab button {
|
|
|
|
border-top-left-radius: 10px;
|
|
|
|
border-top-right-radius: 10px;
|
2020-07-16 01:59:14 +02:00
|
|
|
color: var(--text);
|
2020-04-25 10:31:27 +02:00
|
|
|
background-color: inherit;
|
|
|
|
float: left;
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 14px 16px;
|
|
|
|
transition: 0.3s;
|
2020-07-16 01:59:14 +02:00
|
|
|
border: solid 1px var(--bg-main);
|
2020-04-25 10:31:27 +02:00
|
|
|
width: 33.333%;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab button:hover {
|
|
|
|
background-color: var(--active);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab button.active {
|
2020-07-16 01:59:14 +02:00
|
|
|
background-color: var(--bg-main);
|
2020-04-25 10:31:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.tabcontent {
|
2020-11-08 05:16:52 +01:00
|
|
|
padding-top: 50px;
|
2020-04-25 10:31:27 +02:00
|
|
|
display: none;
|
2020-07-16 01:59:14 +02:00
|
|
|
background-color: var(--bg-main);
|
2020-04-25 16:43:43 +02:00
|
|
|
min-height: 510px;
|
|
|
|
}
|
|
|
|
|
2020-07-12 03:26:48 +02:00
|
|
|
div.exceptions {
|
2020-04-25 16:43:43 +02:00
|
|
|
clear: left;
|
|
|
|
}
|
|
|
|
|
2020-07-12 03:26:48 +02:00
|
|
|
div.exceptions > input {
|
2020-04-25 16:43:43 +02:00
|
|
|
width: 240px;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
2020-07-12 03:26:48 +02:00
|
|
|
#add-to-exceptions {
|
2020-04-25 16:43:43 +02:00
|
|
|
float: right;
|
|
|
|
border: var(--active) solid 1px;
|
|
|
|
background-color: var(--active);
|
2020-07-16 01:59:14 +02:00
|
|
|
color: var(--text);
|
2020-04-25 16:43:43 +02:00
|
|
|
font-weight: bold;
|
|
|
|
cursor: pointer;
|
2020-07-12 03:26:48 +02:00
|
|
|
border-radius: 50%;
|
|
|
|
padding: 1px 1px 0px 1px;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#add-to-exceptions svg {
|
|
|
|
height: 20px;
|
|
|
|
width: 20px;
|
2020-04-25 16:43:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
padding: 0;
|
|
|
|
list-style-type: none;
|
2020-07-16 01:59:14 +02:00
|
|
|
color: var(--text);
|
2020-07-12 03:26:48 +02:00
|
|
|
margin: 20px 20px 0 20px;
|
2020-04-25 16:43:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
2020-07-16 01:59:14 +02:00
|
|
|
border-bottom: solid 0.5px var(--bg-secondary);
|
2020-04-25 16:43:43 +02:00
|
|
|
padding: 20px 0px 20px 20px;
|
|
|
|
}
|
|
|
|
|
2020-07-12 03:26:48 +02:00
|
|
|
#exceptions-items button {
|
2020-04-25 16:43:43 +02:00
|
|
|
float: right;
|
|
|
|
margin-right: -5px;
|
|
|
|
border: var(--active) solid 1px;
|
|
|
|
background-color: var(--active);
|
2020-07-16 01:59:14 +02:00
|
|
|
color: var(--text);
|
2020-04-25 16:43:43 +02:00
|
|
|
font-weight: bold;
|
|
|
|
cursor: pointer;
|
|
|
|
border-radius: 50%;
|
2020-07-12 03:26:48 +02:00
|
|
|
padding: 2px 2px 0px 2px;
|
2020-04-25 10:31:27 +02:00
|
|
|
}
|
2020-05-06 23:44:23 +02:00
|
|
|
|
2020-05-31 02:26:15 +02:00
|
|
|
.button svg {
|
|
|
|
height: 18px;
|
|
|
|
width: 18px;
|
|
|
|
}
|
|
|
|
|
2020-07-12 03:26:48 +02:00
|
|
|
.autocomplete {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.autocomplete input {
|
|
|
|
background: url(../assets/images/chevron-down.svg) right no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
.autocomplete-items {
|
|
|
|
position: absolute;
|
2020-07-16 01:59:14 +02:00
|
|
|
border: 1px solid var(--bg-main);
|
2020-07-12 03:26:48 +02:00
|
|
|
border-bottom: none;
|
|
|
|
border-top: none;
|
|
|
|
z-index: 99;
|
2020-07-15 11:04:52 +02:00
|
|
|
top: 85%;
|
2020-07-12 03:26:48 +02:00
|
|
|
left: 0;
|
|
|
|
right: 0;
|
2020-07-16 01:59:14 +02:00
|
|
|
overflow-y: auto;
|
2020-07-12 03:26:48 +02:00
|
|
|
max-height: 175px;
|
2020-07-16 01:59:14 +02:00
|
|
|
color: var(--text);
|
|
|
|
overflow-x: hidden;
|
|
|
|
max-width: 380px;
|
2020-07-12 03:26:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.autocomplete-items div {
|
|
|
|
padding: 10px;
|
|
|
|
cursor: pointer;
|
2020-07-16 01:59:14 +02:00
|
|
|
background-color: var(--bg-secondary);
|
|
|
|
border-bottom: 1px solid var(--bg-main);
|
2020-07-12 03:26:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.autocomplete-items div:hover {
|
|
|
|
background-color: var(--active);
|
|
|
|
}
|
|
|
|
|
|
|
|
.autocomplete-active {
|
|
|
|
background-color: var(--active);
|
2020-07-16 01:59:14 +02:00
|
|
|
color: var(--text);
|
2020-07-12 03:26:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.option {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.option td {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2020-07-15 11:04:52 +02:00
|
|
|
input[type="range"] {
|
2020-07-12 03:26:48 +02:00
|
|
|
-webkit-appearance: none;
|
|
|
|
margin: 18px 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2020-07-15 11:04:52 +02:00
|
|
|
input[type="range"]:focus {
|
2020-07-12 03:26:48 +02:00
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2020-07-15 11:04:52 +02:00
|
|
|
input[type="range"]::-webkit-slider-runnable-track {
|
2020-07-12 03:26:48 +02:00
|
|
|
width: 100%;
|
|
|
|
height: 8.4px;
|
|
|
|
cursor: pointer;
|
2020-07-16 01:59:14 +02:00
|
|
|
border-color: var(--dark-grey), var(--light-grey);
|
|
|
|
background: var(--bg-main);
|
2020-07-12 03:26:48 +02:00
|
|
|
border-radius: 1.3px;
|
2020-07-16 01:59:14 +02:00
|
|
|
border: 0.2px inset var(--dark-grey);
|
2020-07-12 03:26:48 +02:00
|
|
|
}
|
|
|
|
|
2020-07-15 11:04:52 +02:00
|
|
|
input[type="range"]::-webkit-slider-thumb {
|
2020-07-16 01:59:14 +02:00
|
|
|
border-color: var(--active);
|
|
|
|
border: 1px solid var(--dark-grey);
|
2020-07-12 03:26:48 +02:00
|
|
|
height: 36px;
|
|
|
|
width: 16px;
|
|
|
|
border-radius: 3px;
|
|
|
|
background: var(--active);
|
|
|
|
cursor: pointer;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
margin-top: -14px;
|
|
|
|
}
|
|
|
|
|
2020-07-15 11:04:52 +02:00
|
|
|
input[type="range"]:focus::-webkit-slider-runnable-track {
|
2020-07-16 01:59:14 +02:00
|
|
|
background: var(--bg-main);
|
2020-07-12 03:26:48 +02:00
|
|
|
}
|
|
|
|
|
2020-07-15 11:04:52 +02:00
|
|
|
input[type="range"]::-moz-range-track {
|
2020-07-12 03:26:48 +02:00
|
|
|
width: 100%;
|
|
|
|
height: 8.4px;
|
|
|
|
cursor: pointer;
|
2020-07-16 01:59:14 +02:00
|
|
|
border-color: var(--dark-grey), var(--light-grey);
|
|
|
|
background: var(--bg-main);
|
2020-07-12 03:26:48 +02:00
|
|
|
border-radius: 1.3px;
|
2020-07-16 01:59:14 +02:00
|
|
|
border: 0.2px inset var(--dark-grey);
|
2020-07-12 03:26:48 +02:00
|
|
|
}
|
|
|
|
|
2020-07-15 11:04:52 +02:00
|
|
|
input[type="range"]::-moz-range-thumb {
|
2020-07-16 01:59:14 +02:00
|
|
|
border-color: var(--active);
|
|
|
|
border: 1px solid var(--dark-grey);
|
2020-07-12 03:26:48 +02:00
|
|
|
height: 36px;
|
|
|
|
width: 16px;
|
|
|
|
border-radius: 3px;
|
|
|
|
background: var(--active);
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2020-07-16 01:59:14 +02:00
|
|
|
::placeholder {
|
|
|
|
color: var(--text);
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
2020-05-19 15:48:03 +02:00
|
|
|
|
2020-07-16 01:59:14 +02:00
|
|
|
*:focus {
|
|
|
|
outline: var(--active) solid 2px;
|
2020-05-06 23:44:23 +02:00
|
|
|
}
|
2020-05-07 03:21:06 +02:00
|
|
|
|
|
|
|
@media (prefers-color-scheme: light) {
|
2020-05-19 15:48:03 +02:00
|
|
|
body {
|
2020-07-16 01:59:14 +02:00
|
|
|
--text: #000;
|
|
|
|
--text-secondary: #fff;
|
|
|
|
--bg-main: #e3e7ea;
|
|
|
|
--bg-secondary: #fff;
|
2020-05-31 02:26:15 +02:00
|
|
|
}
|
|
|
|
|
2020-07-16 01:59:14 +02:00
|
|
|
body.dark-theme {
|
|
|
|
--text: #fff;
|
|
|
|
--text-secondary: #000;
|
|
|
|
--bg-main: #3c4043;
|
|
|
|
--bg-secondary: #292a2d;
|
2020-05-31 02:26:15 +02:00
|
|
|
}
|
2020-07-12 03:26:48 +02:00
|
|
|
|
2020-07-16 01:59:14 +02:00
|
|
|
.popup {
|
|
|
|
background-color: var(--bg-secondary);
|
2020-07-12 03:26:48 +02:00
|
|
|
}
|
2020-05-07 03:21:06 +02:00
|
|
|
}
|
2020-09-01 09:26:23 +02:00
|
|
|
|
|
|
|
#volume-value {
|
|
|
|
float: right;
|
|
|
|
}
|
2020-11-08 11:07:03 +01:00
|
|
|
|
|
|
|
.subheading {
|
|
|
|
padding: 0 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.subheading h1 {
|
|
|
|
color: var(--active);
|
|
|
|
}
|
|
|
|
|
|
|
|
.subheading hr {
|
|
|
|
height: 1px;
|
|
|
|
background-color: var(--active);
|
|
|
|
border: none;
|
|
|
|
}
|