2014-06-23 22:42:43 +00:00
|
|
|
@font-face {
|
2014-10-25 07:50:37 +00:00
|
|
|
font-family: 'FontAwesome';
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
font-style: normal;
|
2015-03-31 13:25:39 +00:00
|
|
|
src: url('fonts/fontawesome-webfont.ttf') format('truetype');
|
2014-10-25 07:50:37 +00:00
|
|
|
}
|
2014-06-23 22:42:43 +00:00
|
|
|
.fa {
|
2015-03-31 13:25:39 +00:00
|
|
|
display: inline-block;
|
2014-06-23 22:42:43 +00:00
|
|
|
font-family: FontAwesome;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
line-height: 1;
|
2016-12-14 12:34:36 +00:00
|
|
|
user-select: none;
|
|
|
|
|
-moz-user-select: none;
|
|
|
|
|
-webkit-user-select: none;
|
2014-06-23 22:42:43 +00:00
|
|
|
}
|
2015-04-07 16:05:38 +00:00
|
|
|
body {
|
2020-04-11 15:32:43 +00:00
|
|
|
background-color: var(--bg-0);
|
|
|
|
|
border: 0;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
color: var(--fg-0);
|
|
|
|
|
fill: var(--fg-0);
|
2020-04-10 22:17:12 +00:00
|
|
|
font: 14px/1.5 sans-serif;
|
2020-04-11 15:32:43 +00:00
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
2016-11-05 18:48:42 +00:00
|
|
|
}
|
2018-03-28 20:15:50 +00:00
|
|
|
code {
|
2020-04-13 13:19:58 +00:00
|
|
|
background-color: var(--bg-code);
|
2018-03-28 20:15:50 +00:00
|
|
|
padding: 0 0.25em;
|
|
|
|
|
}
|
2016-11-05 18:48:42 +00:00
|
|
|
textarea {
|
|
|
|
|
font-size: 90%;
|
2015-04-07 16:05:38 +00:00
|
|
|
}
|
2015-08-12 16:17:39 +00:00
|
|
|
/* I designed the button with: http://charliepark.org/bootstrap_buttons/ */
|
|
|
|
|
button.custom {
|
2020-04-10 22:17:12 +00:00
|
|
|
align-items: flex-end;
|
2015-08-12 16:17:39 +00:00
|
|
|
border: 1px solid transparent;
|
|
|
|
|
border-radius: 3px;
|
2020-04-11 15:32:43 +00:00
|
|
|
background-color: var(--bg-button);
|
|
|
|
|
color: var(--fg-button)
|
2020-04-10 22:17:12 +00:00
|
|
|
display: inline-flex;
|
|
|
|
|
padding: 0.6em 1em;
|
|
|
|
|
-moz-appearance: none;
|
|
|
|
|
-webkit-appearance: none;
|
2015-08-12 16:17:39 +00:00
|
|
|
}
|
2020-04-13 13:19:58 +00:00
|
|
|
button.custom.vflex {
|
|
|
|
|
height: 100%;
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
}
|
2018-03-28 20:15:50 +00:00
|
|
|
button.custom:hover {
|
2020-04-13 13:19:58 +00:00
|
|
|
background-color: var(--bg-button-hover);
|
2018-03-28 20:15:50 +00:00
|
|
|
}
|
|
|
|
|
button.custom.important {
|
2020-04-13 13:19:58 +00:00
|
|
|
background-color: var(--bg-button-important);
|
2020-04-10 22:17:12 +00:00
|
|
|
}
|
|
|
|
|
button.custom.important:hover {
|
2020-04-13 13:19:58 +00:00
|
|
|
background-color: var(--bg-button-important-hover);
|
2018-03-28 20:15:50 +00:00
|
|
|
}
|
2015-08-12 16:17:39 +00:00
|
|
|
button.custom.disabled,
|
2018-03-28 20:15:50 +00:00
|
|
|
button.custom[disabled],
|
|
|
|
|
button.custom.important.disabled,
|
|
|
|
|
button.custom.important[disabled] {
|
2020-04-11 15:32:43 +00:00
|
|
|
background-color: var(--bg-button-disabled);
|
|
|
|
|
color: var(--fg-button-disabled);
|
2015-08-12 16:17:39 +00:00
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
2020-04-10 22:17:12 +00:00
|
|
|
button.custom.iconifiable > .fa,
|
|
|
|
|
button.custom.iconifiable > .fa-icon {
|
2018-03-28 20:15:50 +00:00
|
|
|
padding-right: 0.5em;
|
2015-08-12 16:17:39 +00:00
|
|
|
}
|
2020-04-10 22:17:12 +00:00
|
|
|
body[dir="rtl"] button.custom.iconifiable > .fa,
|
|
|
|
|
body[dir="rtl"] button.custom.iconifiable > .fa-icon {
|
2018-03-28 20:15:50 +00:00
|
|
|
padding-left: 0.5em;
|
2015-06-06 22:31:38 +00:00
|
|
|
}
|
2018-03-28 20:15:50 +00:00
|
|
|
.hidden {
|
|
|
|
|
display: none;
|
2015-04-07 16:05:38 +00:00
|
|
|
height: 0;
|
2014-10-25 07:50:37 +00:00
|
|
|
visibility: hidden;
|
|
|
|
|
width: 0;
|
|
|
|
|
}
|
2020-04-10 22:17:12 +00:00
|
|
|
label {
|
|
|
|
|
align-items: center;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
}
|
2020-04-11 15:32:43 +00:00
|
|
|
@media (pointer: coarse) {
|
|
|
|
|
label {
|
|
|
|
|
flex-grow: 1
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-04-10 22:17:12 +00:00
|
|
|
input[type="checkbox"] {
|
|
|
|
|
margin: 0;
|
|
|
|
|
margin-inline-start: 0.4em;
|
|
|
|
|
-webkit-margin-start: 0.4em;
|
|
|
|
|
margin-inline-end: 0.4em;
|
|
|
|
|
-webkit-margin-end: 0.4em;
|
|
|
|
|
}
|
|
|
|
|
.ul {
|
|
|
|
|
margin: 0.5em 0;
|
|
|
|
|
}
|
|
|
|
|
.li {
|
|
|
|
|
align-items: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
margin: 0.5em 0;
|
|
|
|
|
}
|
|
|
|
|
.liul {
|
|
|
|
|
margin: 0.5em 0;
|
|
|
|
|
margin-inline-start: 2em;
|
|
|
|
|
-webkit-margin-start: 2em;
|
|
|
|
|
}
|
2018-03-28 20:15:50 +00:00
|
|
|
@media (max-width: 640px) {
|
2020-04-10 22:17:12 +00:00
|
|
|
button.custom.iconifiable > .fa,
|
|
|
|
|
button.custom.iconifiable > .fa-icon {
|
2020-04-13 13:19:58 +00:00
|
|
|
font-size: 1.2rem;
|
2018-03-28 20:15:50 +00:00
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
button.custom.iconifiable > [data-i18n] {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-12-19 21:21:23 +00:00
|
|
|
|
|
|
|
|
.ubo-icon {
|
|
|
|
|
align-items: center;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
border: 0;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0.1em;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
.ubo-icon > * {
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
.ubo-icon.disabled,
|
|
|
|
|
.disabled > .ubo-icon,
|
|
|
|
|
.ubo-icon[disabled],
|
|
|
|
|
[disabled] > .ubo-icon {
|
2020-04-13 13:19:58 +00:00
|
|
|
color: var(--fg-button-disabled);
|
|
|
|
|
fill: var(--fg-button-disabled);
|
2020-04-11 15:32:43 +00:00
|
|
|
stroke: var(--fg-button-disabled);
|
2018-12-19 21:21:23 +00:00
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
.ubo-icon > svg {
|
|
|
|
|
height: 1em;
|
|
|
|
|
width: 1em;
|
|
|
|
|
}
|