2020-05-19 16:18:12 +02:00
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
font-size: 100%;
|
|
|
|
vertical-align: baseline;
|
|
|
|
}
|
|
|
|
|
2020-05-17 19:29:06 +02:00
|
|
|
html, body {
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2020-06-23 20:25:28 +02:00
|
|
|
body {
|
|
|
|
background-color: #cccccc;
|
|
|
|
}
|
|
|
|
|
2020-05-30 20:13:00 +02:00
|
|
|
button::-moz-focus-inner, input::-moz-focus-inner {
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
2020-06-27 00:24:04 +02:00
|
|
|
/* to be compatible with browsers that don't know <main> */
|
|
|
|
main {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2020-06-14 22:08:01 +02:00
|
|
|
::selection {
|
|
|
|
background-color: #28a745;
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
|
2021-05-28 08:19:35 +02:00
|
|
|
p, h1, h2, h3, input, textarea, select, button, a, table, label {
|
2020-05-19 16:18:12 +02:00
|
|
|
font-family: 'Roboto', sans-serif;
|
|
|
|
}
|
|
|
|
|
2021-05-28 08:19:35 +02:00
|
|
|
h1, h2, h3 {
|
2020-05-30 15:37:26 +02:00
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 32px;
|
|
|
|
}
|
|
|
|
|
2020-05-30 17:39:27 +02:00
|
|
|
h1>a:link, h1>a:visited {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1>a:hover, h1>a:focus {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2020-06-21 22:20:04 +02:00
|
|
|
h2, header.small h1 {
|
2020-05-30 15:37:26 +02:00
|
|
|
font-size: 24px;
|
|
|
|
}
|
|
|
|
|
2021-05-28 08:19:35 +02:00
|
|
|
h3 {
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
p, h2, h3 {
|
2020-05-30 15:37:26 +02:00
|
|
|
line-height: 150%;
|
|
|
|
}
|
|
|
|
|
2020-05-19 16:18:12 +02:00
|
|
|
p {
|
|
|
|
font-weight: 300;
|
2020-05-30 15:37:26 +02:00
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
display: block;
|
2020-05-19 16:18:12 +02:00
|
|
|
}
|
|
|
|
|
2020-05-30 20:39:15 +02:00
|
|
|
sup, sub {
|
|
|
|
position: relative;
|
|
|
|
font-size: smaller;
|
|
|
|
}
|
|
|
|
|
|
|
|
sup {
|
|
|
|
vertical-align: top;
|
|
|
|
top: -0.4em;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub {
|
|
|
|
vertical-align: bottom;
|
|
|
|
bottom: -0.4em;
|
|
|
|
}
|
|
|
|
|
2020-06-14 20:15:53 +02:00
|
|
|
hr {
|
|
|
|
border: solid #bbbbbb 1px;
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
|
|
|
|
2020-05-19 16:18:12 +02:00
|
|
|
.bold {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
2020-06-21 22:20:04 +02:00
|
|
|
p.small, span.small {
|
2020-06-24 21:56:54 +02:00
|
|
|
font-size: 14px;
|
2020-05-30 15:37:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.justify {
|
|
|
|
text-align: justify;
|
|
|
|
}
|
|
|
|
|
|
|
|
.marginTop {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
2020-06-14 02:30:15 +02:00
|
|
|
.marginLeft {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
|
2020-05-30 15:37:26 +02:00
|
|
|
.marginBottom {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2020-06-14 02:30:15 +02:00
|
|
|
.marginRight {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
2020-06-21 01:33:33 +02:00
|
|
|
.center {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2020-06-09 02:01:41 +02:00
|
|
|
.right {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2020-06-01 20:39:23 +02:00
|
|
|
svg.inline, img.inline {
|
2020-06-06 01:11:45 +02:00
|
|
|
display: inline;
|
2020-06-01 20:39:23 +02:00
|
|
|
width: 1em;
|
|
|
|
height: 1em;
|
2020-06-21 17:36:08 +02:00
|
|
|
margin-right: 0.3em;
|
2020-05-30 15:37:26 +02:00
|
|
|
vertical-align: -0.15em;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:link, a:visited {
|
|
|
|
color: #3b5998;
|
|
|
|
font-weight: 500;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2020-05-30 17:39:27 +02:00
|
|
|
a:hover, a:focus {
|
2020-05-30 15:37:26 +02:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
button, a.button {
|
2020-05-19 16:18:12 +02:00
|
|
|
cursor: pointer;
|
2020-05-21 01:58:47 +02:00
|
|
|
font-size: 16px;
|
2020-05-19 16:18:12 +02:00
|
|
|
font-weight: 500;
|
|
|
|
color: #ffffff;
|
|
|
|
background-color: #5e77aa;
|
2020-05-21 01:58:47 +02:00
|
|
|
padding: 0 15px;
|
|
|
|
height: 35px;
|
2020-05-19 16:18:12 +02:00
|
|
|
border: none;
|
|
|
|
border-radius: 3px;
|
2020-05-30 15:37:26 +02:00
|
|
|
display: inline-block;
|
|
|
|
text-align: center;
|
|
|
|
line-height: 35px;
|
2020-05-19 16:18:12 +02:00
|
|
|
}
|
|
|
|
|
2020-06-28 03:12:16 +02:00
|
|
|
button.small, div.inputWithButton>button {
|
2020-06-24 21:56:54 +02:00
|
|
|
font-size: 14px;
|
|
|
|
padding: 0 12px;
|
|
|
|
height: 32px;
|
|
|
|
line-height: 32px;
|
|
|
|
}
|
|
|
|
|
2020-06-28 03:12:16 +02:00
|
|
|
button.small {
|
|
|
|
height: 32px;
|
|
|
|
line-height: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.inputWithButton>button {
|
|
|
|
border-radius: 2px;
|
|
|
|
height: 27px;
|
|
|
|
line-height: 27px;
|
|
|
|
width: 75px;
|
|
|
|
margin-left: -79px;
|
|
|
|
vertical-align: 2px;
|
|
|
|
}
|
|
|
|
|
2020-05-30 15:37:26 +02:00
|
|
|
button:enabled:hover, button:enabled:focus, a.button:hover, a.button:focus {
|
2020-05-19 16:18:12 +02:00
|
|
|
background-color: #29457f;
|
|
|
|
outline: none;
|
2020-05-30 15:37:26 +02:00
|
|
|
text-decoration: none;
|
2020-05-19 16:18:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
button:disabled {
|
2020-05-22 23:29:04 +02:00
|
|
|
cursor: not-allowed;
|
2020-05-19 16:18:12 +02:00
|
|
|
color: #dddddd;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
2020-05-30 15:37:26 +02:00
|
|
|
button.fullWidth, a.button.fullWidth {
|
2020-05-21 01:58:47 +02:00
|
|
|
padding: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2020-06-10 23:17:13 +02:00
|
|
|
button.noLeftRadius, a.button.noLeftRadius {
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
button.noRightRadius, a.button.noRightRadius {
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
}
|
|
|
|
|
2020-05-30 15:37:26 +02:00
|
|
|
button.gray, a.button.gray {
|
2020-05-21 01:58:47 +02:00
|
|
|
background-color: #808080;
|
|
|
|
}
|
|
|
|
|
2020-06-28 03:12:16 +02:00
|
|
|
button.gray:enabled:hover, button.gray:enabled:focus, a.button.gray:hover, a.button.gray:focus {
|
2020-05-21 01:58:47 +02:00
|
|
|
background-color: #555555;
|
|
|
|
}
|
|
|
|
|
2020-06-01 20:39:23 +02:00
|
|
|
button.red, a.button.red {
|
|
|
|
background-color: #aa5e5e;
|
|
|
|
}
|
|
|
|
|
2020-06-28 03:12:16 +02:00
|
|
|
button.red:enabled:hover, button.red:enabled:focus, a.button.red:hover, a.button.red:focus {
|
2020-06-01 20:39:23 +02:00
|
|
|
background-color: #7f2929;
|
|
|
|
}
|
|
|
|
|
2020-06-10 00:30:29 +02:00
|
|
|
button.yellow, a.button.yellow {
|
|
|
|
background-color: #e8a349;
|
|
|
|
}
|
|
|
|
|
2020-06-28 03:12:16 +02:00
|
|
|
button.yellow:enabled:hover, button.yellow:enabled:focus, a.button.yellow:hover, a.button.yellow:focus {
|
2020-06-10 00:30:29 +02:00
|
|
|
background-color: #c37713;
|
|
|
|
}
|
|
|
|
|
2020-06-10 23:17:13 +02:00
|
|
|
button.green, a.button.green {
|
|
|
|
background-color: #28a745;
|
|
|
|
}
|
|
|
|
|
2020-06-28 03:12:16 +02:00
|
|
|
button.green:enabled:hover, button.green:enabled:focus, a.button.green:hover, a.button.green:focus {
|
2020-06-10 23:17:13 +02:00
|
|
|
background-color: #1b7d31;
|
|
|
|
}
|
|
|
|
|
2020-06-09 02:01:41 +02:00
|
|
|
input, select, textarea {
|
|
|
|
background-color: #f9fafb;
|
|
|
|
border: solid #c8d2e1 1px;
|
|
|
|
border-radius: 2px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
font-size: 15px;
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
|
2020-06-28 03:12:16 +02:00
|
|
|
input, select {
|
|
|
|
height: 30px;
|
|
|
|
line-height: 30px;
|
|
|
|
padding: 0 5px;
|
|
|
|
}
|
|
|
|
|
2020-06-09 02:01:41 +02:00
|
|
|
textarea {
|
2020-06-28 03:12:16 +02:00
|
|
|
padding: 5px;
|
2020-06-09 02:01:41 +02:00
|
|
|
resize: none;
|
|
|
|
}
|
|
|
|
|
2020-06-28 03:12:16 +02:00
|
|
|
input.big, select.big, textarea.big, div.inputWithButton>input {
|
2020-06-09 02:01:41 +02:00
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
2020-06-28 03:12:16 +02:00
|
|
|
input.big, select.big, div.inputWithButton>input {
|
|
|
|
height: 35px;
|
|
|
|
line-height: 35px;
|
|
|
|
padding: 0 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
textarea.big {
|
|
|
|
padding: 6px;
|
|
|
|
}
|
|
|
|
|
2020-06-09 02:01:41 +02:00
|
|
|
input.fullWidth, select.fullWidth, textarea.fullWidth {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
input:disabled, select:disabled, textarea:disabled {
|
|
|
|
background-color: #dfdfdf;
|
|
|
|
border: solid #dfdfdf 1px;
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
input:focus, select:focus, textarea:focus {
|
|
|
|
background-color: #ffffff;
|
|
|
|
border: solid #29457f 2px;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2020-06-28 03:12:16 +02:00
|
|
|
input:focus, select:focus {
|
|
|
|
padding: 0 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
textarea:focus {
|
2020-06-09 02:01:41 +02:00
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
2020-06-28 03:12:16 +02:00
|
|
|
input.big:focus, select.big:focus {
|
|
|
|
padding: 0 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.inputWithButton>input {
|
|
|
|
width: 100%;
|
2020-07-03 23:50:22 +02:00
|
|
|
padding: 0 83px 0 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.inputWithButton>input:focus {
|
|
|
|
padding: 0 82px 0 5px;
|
2020-06-28 03:12:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
textarea.big:focus {
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
2020-06-14 02:30:15 +02:00
|
|
|
div.modal {
|
|
|
|
position: fixed;
|
|
|
|
background-color: #ffffff;
|
|
|
|
border-radius: 3px;
|
|
|
|
box-sizing: border-box;
|
2020-06-21 23:00:58 +02:00
|
|
|
overflow-y: auto;
|
2020-06-18 16:37:32 +02:00
|
|
|
z-index: 6;
|
2020-06-14 02:30:15 +02:00
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
#cover {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
background-color: #000000;
|
|
|
|
opacity: 0.5;
|
2020-06-18 16:37:32 +02:00
|
|
|
z-index: 5;
|
2020-06-14 02:30:15 +02:00
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
2020-06-14 17:16:47 +02:00
|
|
|
p.error, p.formError {
|
2020-06-09 02:01:41 +02:00
|
|
|
color: #7f2929;
|
|
|
|
font-weight: 500;
|
2020-06-14 17:16:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
p.formError {
|
2020-06-09 02:01:41 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2020-06-21 22:20:04 +02:00
|
|
|
header {
|
2020-06-14 17:16:47 +02:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: auto auto;
|
2020-05-30 15:37:26 +02:00
|
|
|
background-color: #333333;
|
|
|
|
height: 50px;
|
|
|
|
line-height: 50px;
|
|
|
|
padding: 0 12px;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2020-06-21 22:20:04 +02:00
|
|
|
header.small {
|
2020-05-30 17:39:27 +02:00
|
|
|
height: 40px;
|
|
|
|
line-height: 40px;
|
|
|
|
}
|
|
|
|
|
2020-06-21 22:20:04 +02:00
|
|
|
header>p {
|
2020-06-05 19:36:07 +02:00
|
|
|
line-height: inherit;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2020-06-21 22:20:04 +02:00
|
|
|
header>p>span {
|
2020-06-06 01:11:45 +02:00
|
|
|
padding-left: 6px;
|
|
|
|
}
|
|
|
|
|
2020-06-21 22:20:04 +02:00
|
|
|
header>p>span>a:link, header>p>span>a:visited {
|
2020-06-06 01:11:45 +02:00
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
2020-06-21 22:20:04 +02:00
|
|
|
header>p>span:not(:last-child) {
|
2020-06-06 01:11:45 +02:00
|
|
|
border-right: solid white 1px;
|
|
|
|
padding-right: 6px;
|
|
|
|
}
|
|
|
|
|
2020-06-21 22:20:04 +02:00
|
|
|
main {
|
2020-06-23 20:25:28 +02:00
|
|
|
background-color: #ffffff;
|
2020-05-30 15:37:26 +02:00
|
|
|
padding: 6px 12px;
|
|
|
|
}
|
|
|
|
|
2020-06-27 00:24:04 +02:00
|
|
|
main.full {
|
2020-06-25 14:00:38 +02:00
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
height: calc(100% - 40px);
|
2020-06-27 00:24:04 +02:00
|
|
|
padding: 0;
|
2020-06-25 14:00:38 +02:00
|
|
|
}
|
|
|
|
|
2020-06-21 22:20:04 +02:00
|
|
|
footer {
|
|
|
|
background-color: #444444;
|
|
|
|
padding: 6px 12px;
|
|
|
|
color: white;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer>p {
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
|
2020-05-21 01:58:47 +02:00
|
|
|
div.buttonContainer {
|
|
|
|
height: 35px;
|
|
|
|
}
|
|
|
|
|
2020-05-30 15:37:26 +02:00
|
|
|
div.buttonContainer>button {
|
2020-05-23 02:07:50 +02:00
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
2020-06-24 21:56:54 +02:00
|
|
|
#cookiesNotice {
|
2020-07-06 20:00:54 +02:00
|
|
|
position: fixed;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: 20px;
|
2020-06-24 21:56:54 +02:00
|
|
|
background-color: #eeeeee;
|
2020-07-06 20:00:54 +02:00
|
|
|
border: solid #888888 1px;
|
|
|
|
border-radius: 3px;
|
2020-06-24 21:56:54 +02:00
|
|
|
padding: 10px;
|
|
|
|
text-align: center;
|
2020-07-06 20:00:54 +02:00
|
|
|
z-index: 10;
|
2020-06-24 21:56:54 +02:00
|
|
|
}
|
|
|
|
|
2020-05-20 15:54:09 +02:00
|
|
|
#loading {
|
2020-06-11 23:53:15 +02:00
|
|
|
position: fixed;
|
2020-05-24 14:02:42 +02:00
|
|
|
width: 64px;
|
|
|
|
height: 64px;
|
2020-05-20 15:54:09 +02:00
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
2020-05-24 14:02:42 +02:00
|
|
|
margin-top: -32px;
|
|
|
|
margin-left: -32px;
|
2020-06-18 16:37:32 +02:00
|
|
|
z-index: 7;
|
2020-05-31 03:50:06 +02:00
|
|
|
visibility: hidden;
|
2020-05-20 15:54:09 +02:00
|
|
|
}
|
|
|
|
|
2020-06-09 02:01:41 +02:00
|
|
|
div.box {
|
|
|
|
width: 576px;
|
|
|
|
background-color: #eeeeee;
|
|
|
|
border-radius: 3px;
|
|
|
|
margin: 10px auto;
|
|
|
|
padding: 10px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2021-05-02 14:51:01 +02:00
|
|
|
.circleControl {
|
|
|
|
position: absolute;
|
|
|
|
width: 60px;
|
|
|
|
bottom: 20px;
|
|
|
|
right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.circleControl .controlItem {
|
2021-05-09 16:15:29 +02:00
|
|
|
position: relative;
|
2021-05-02 14:51:01 +02:00
|
|
|
height: 60px;
|
|
|
|
margin-top: 10px;
|
|
|
|
opacity: 70%;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.circleControl .controlItem:hover {
|
|
|
|
opacity: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.circleControl .controlItem div {
|
|
|
|
position: absolute;
|
2021-05-09 16:15:29 +02:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2021-05-02 14:51:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.circleControl .controlBackground {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
opacity: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.circleControl .controlIcon {
|
|
|
|
width: 75%;
|
|
|
|
height: 75%;
|
|
|
|
margin: auto;
|
|
|
|
margin-top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
}
|
|
|
|
|
2020-05-21 01:58:47 +02:00
|
|
|
@media screen and (max-width: 599px) {
|
2020-06-21 22:20:04 +02:00
|
|
|
header h1 span {
|
2020-05-30 17:39:27 +02:00
|
|
|
display: none;
|
|
|
|
}
|
2020-06-21 22:20:04 +02:00
|
|
|
footer>p:not(:first-child) {
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
2020-06-10 23:17:13 +02:00
|
|
|
button, a.button {
|
2020-05-21 01:58:47 +02:00
|
|
|
padding: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2020-06-21 14:36:00 +02:00
|
|
|
button.marginLeft, a.button.marginLeft {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
button.marginRight, a.button.marginRight {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
2020-06-14 02:30:15 +02:00
|
|
|
div.modal {
|
|
|
|
left: 20px;
|
|
|
|
right: 20px;
|
2020-06-21 23:00:58 +02:00
|
|
|
padding-left: 15px;
|
|
|
|
padding-right: 15px;
|
2020-06-14 02:30:15 +02:00
|
|
|
}
|
2020-06-09 02:01:41 +02:00
|
|
|
div.box {
|
|
|
|
width: initial;
|
|
|
|
}
|
2021-05-02 14:51:01 +02:00
|
|
|
.circleControl {
|
|
|
|
width: 45px;
|
|
|
|
}
|
|
|
|
.circleControl .controlItem {
|
|
|
|
height: 45px;
|
|
|
|
}
|
2020-05-21 01:58:47 +02:00
|
|
|
}
|
2020-06-14 02:30:15 +02:00
|
|
|
|
|
|
|
@media screen and (min-width: 600px) {
|
2020-06-21 22:20:04 +02:00
|
|
|
footer>p {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
footer>p:not(:first-child) {
|
|
|
|
padding-left: 6px;
|
|
|
|
}
|
|
|
|
footer>p:not(:last-child) {
|
|
|
|
border-right: solid white 1px;
|
|
|
|
padding-right: 6px;
|
|
|
|
}
|
2020-06-14 02:30:15 +02:00
|
|
|
div.modal {
|
|
|
|
width: 540px;
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -270px;
|
2020-06-21 23:00:58 +02:00
|
|
|
padding-left: 20px;
|
|
|
|
padding-right: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-height: 399px) {
|
|
|
|
div.modal {
|
|
|
|
top: 20px;
|
|
|
|
max-height: calc(100% - 40px);
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
2021-05-02 14:51:01 +02:00
|
|
|
.circleControl {
|
|
|
|
width: 45px;
|
|
|
|
}
|
|
|
|
.circleControl .controlItem {
|
|
|
|
height: 45px;
|
|
|
|
}
|
2020-06-21 23:00:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-height: 400px) and (max-height: 499px) {
|
|
|
|
div.modal {
|
|
|
|
top: 50px;
|
|
|
|
max-height: calc(100% - 100px);
|
|
|
|
padding-top: 15px;
|
|
|
|
padding-bottom: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-height: 500px) {
|
|
|
|
div.modal {
|
|
|
|
top: 75px;
|
|
|
|
max-height: calc(100% - 150px);
|
|
|
|
padding-top: 15px;
|
|
|
|
padding-bottom: 15px;
|
2020-06-14 02:30:15 +02:00
|
|
|
}
|
|
|
|
}
|