2020-10-21 16:50:24 +00:00
|
|
|
body {
|
|
|
|
|
margin-bottom: 6rem;
|
|
|
|
|
}
|
2022-02-02 20:40:47 +00:00
|
|
|
|
2020-04-05 19:19:07 +00:00
|
|
|
.synopsis {
|
2022-02-06 13:12:52 +00:00
|
|
|
color: var(--ink-0);
|
2022-02-05 12:42:17 +00:00
|
|
|
font-size: var(--font-size-smaller);
|
2022-02-02 20:40:47 +00:00
|
|
|
opacity: var(--medium-em);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* surface/ink */
|
|
|
|
|
#themeMood {
|
|
|
|
|
align-items: stretch;
|
|
|
|
|
align-self: stretch;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
justify-content: stretch
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
|
|
|
|
#themeMood > span {
|
|
|
|
|
border: 1px solid var(--ink-1);
|
|
|
|
|
color: var(--ink-1);
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
background-color: var(--surface-1);
|
|
|
|
|
display: inline-block;
|
|
|
|
|
padding: 0 0.5em;
|
|
|
|
|
text-align: center;
|
|
|
|
|
user-select: none;
|
2015-04-09 09:02:57 +00:00
|
|
|
}
|
2022-02-02 20:40:47 +00:00
|
|
|
|
|
|
|
|
/* primary color */
|
|
|
|
|
#themePrimary {
|
|
|
|
|
align-items: stretch;
|
|
|
|
|
align-self: stretch;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
justify-content: stretch
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
#themePrimary > span {
|
2022-02-03 11:14:04 +00:00
|
|
|
background-color: rgb(var(--primary-50));
|
2022-02-02 20:40:47 +00:00
|
|
|
display: inline-flex;
|
|
|
|
|
width: 2em;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-10 22:17:12 +00:00
|
|
|
[href="advanced-settings.html"] {
|
2016-11-03 15:20:47 +00:00
|
|
|
display: none;
|
|
|
|
|
}
|
2020-04-10 22:17:12 +00:00
|
|
|
body.advancedUser [href="advanced-settings.html"] {
|
|
|
|
|
display: inline-flex;
|
2016-11-03 15:20:47 +00:00
|
|
|
}
|
2022-02-02 20:40:47 +00:00
|
|
|
|
2020-04-21 20:33:08 +00:00
|
|
|
#localData > div {
|
2020-05-16 21:51:01 +00:00
|
|
|
margin-bottom: var(--default-gap-small);
|
2020-04-21 20:33:08 +00:00
|
|
|
}
|
|
|
|
|
#localData > div:last-of-type {
|
2020-05-16 21:51:01 +00:00
|
|
|
align-items: flex-start;
|
2020-04-21 20:33:08 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
#localData > div:last-of-type > button {
|
2020-05-16 21:51:01 +00:00
|
|
|
margin-bottom: var(--default-gap-small);
|
|
|
|
|
min-width: 280px;
|
2020-04-21 20:33:08 +00:00
|
|
|
}
|
|
|
|
|
|
2020-05-16 21:51:01 +00:00
|
|
|
/* Mobile devices */
|
|
|
|
|
|
2020-04-21 20:33:08 +00:00
|
|
|
:root.mobile #localData {
|
2020-05-16 21:51:01 +00:00
|
|
|
max-width: 100vw;
|
|
|
|
|
}
|
|
|
|
|
:root.mobile #localData > div:last-of-type {
|
|
|
|
|
align-items: stretch;
|
|
|
|
|
}
|
|
|
|
|
:root.mobile #localData > div:last-of-type > button {
|
|
|
|
|
min-width: unset;
|
2020-04-21 20:33:08 +00:00
|
|
|
}
|