semaphore/src/scss/global.scss

220 lines
4.2 KiB
SCSS
Raw Normal View History

@import './fonts.scss';
@import './variables.scss';
@import './focus.scss';
2018-01-12 16:36:31 +00:00
body {
margin: 0;
2023-01-10 14:21:38 +00:00
font-family: system-ui, -apple-system, SemaphoreRegular, sans-serif;
2018-01-12 16:36:31 +00:00
font-size: 14px;
2018-02-11 00:22:12 +00:00
line-height: 1.4;
2018-01-12 17:05:03 +00:00
color: var(--body-text-color);
2018-01-12 17:01:46 +00:00
background: var(--body-bg);
-webkit-tap-highlight-color: transparent; // fix for blue background on spoiler tap on Chrome for Android
overflow-x: hidden; // Prevent horizontal scrolling on mobile Firefox on small screens
@media (max-width: 240px) {
font-size: 0.75em; /* tiny text for tiny screens */
}
2018-01-12 16:36:31 +00:00
}
.main-content {
contain: content; // see https://www.w3.org/TR/2018/CR-css-contain-1-20181108/#valdef-contain-content
padding-top: var(--main-content-pad-top);
padding-bottom: var(--main-content-pad-bottom);
@supports not (contain: content) {
// For browsers which don't support the "contain" CSS property,
// make a stacking context manually so that the z-index behavior
// is consistent. See: https://github.com/nolanlawson/pinafore/issues/1806
isolation: isolate;
}
2018-01-16 02:29:28 +00:00
}
main {
2018-01-12 16:36:31 +00:00
position: relative;
2018-01-16 05:58:31 +00:00
width: 602px;
// take into account scrollbars;
// https://stackoverflow.com/a/34884924
max-width: 100%;
padding: 0;
2018-01-12 16:36:31 +00:00
box-sizing: border-box;
margin: 0 auto var(--main-margin-bottom);
2018-01-12 17:01:46 +00:00
background: var(--main-bg);
border: var(--main-border-size) solid var(--main-border);
2018-01-12 16:36:31 +00:00
border-radius: 1px;
2018-03-17 01:03:35 +00:00
min-height: 70vh;
2018-01-12 16:36:31 +00:00
}
2018-03-07 17:25:07 +00:00
footer {
width: 602px;
max-width: 100vw;
box-sizing: border-box;
2018-03-27 17:34:29 +01:00
margin: 15px auto;
2018-03-07 17:25:07 +00:00
border-radius: 1px;
background: var(--main-bg);
font-size: 0.9em;
2018-03-11 19:13:12 +00:00
padding: 20px;
2018-03-07 17:25:07 +00:00
border: 1px solid var(--main-border);
}
2018-01-12 16:36:31 +00:00
h1, h2, h3, h4, h5, h6 {
margin: 0 0 0.5em 0;
font-weight: 400;
line-height: 1.2;
}
h1 {
font-size: 2em;
}
a {
2018-01-12 17:01:46 +00:00
color: var(--anchor-text);
2018-01-12 16:36:31 +00:00
text-decoration: none;
&:visited {
color: var(--anchor-text);
}
&:hover {
text-decoration: underline;
}
2018-01-12 16:36:31 +00:00
}
input {
2018-01-12 17:01:46 +00:00
border: 1px solid var(--input-border);
2018-01-12 16:36:31 +00:00
padding: 5px;
2018-02-26 00:26:43 +00:00
box-sizing: border-box;
2018-01-12 16:36:31 +00:00
}
input[type=search] {
-webkit-appearance: none; // reset Safari user agent stylesheet
}
// Fixes gray/black background when using a dark GTK theme
input, textarea {
background: inherit;
color: inherit;
}
2018-03-07 07:27:36 +00:00
button, .button {
2018-01-12 16:36:31 +00:00
font-size: 1.2em;
2018-01-12 17:01:46 +00:00
background: var(--button-bg);
2018-01-12 16:36:31 +00:00
border-radius: 2px;
padding: 10px 15px;
2018-01-12 17:01:46 +00:00
border: 1px solid var(--button-border);
2018-01-12 16:36:31 +00:00
cursor: pointer;
2018-01-12 17:01:46 +00:00
color: var(--button-text);
2018-01-12 16:36:31 +00:00
2018-01-14 02:59:49 +00:00
&:hover {
background: var(--button-bg-hover);
2018-03-07 07:27:36 +00:00
text-decoration: none;
2018-01-14 02:59:49 +00:00
}
2018-01-12 16:36:31 +00:00
2018-01-14 02:59:49 +00:00
&:active {
background: var(--button-bg-active);
}
2018-01-12 16:36:31 +00:00
2018-01-14 02:59:49 +00:00
&[disabled] {
opacity: 0.35;
pointer-events: none;
cursor: not-allowed;
}
2018-01-12 16:36:31 +00:00
2018-01-14 02:59:49 +00:00
&.primary {
border: 1px solid var(--button-primary-border);
background: var(--button-primary-bg);
color: var(--button-primary-text);
&:hover {
background: var(--button-primary-bg-hover);
}
2018-01-12 16:36:31 +00:00
2018-01-14 02:59:49 +00:00
&:active {
background: var(--button-primary-bg-active);
}
}
2018-01-12 16:36:31 +00:00
}
p, label, input {
font-size: 1.3em;
}
ul, li, p {
padding: 0;
margin: 0;
}
2018-01-14 04:33:14 +00:00
.hidden {
opacity: 0;
2018-01-21 18:53:15 +00:00
}
button::-moz-focus-inner {
border: 0;
}
2018-02-07 04:54:49 +00:00
/* Firefox hacks to remove ugly red border.
Unnecessary since it gives a warning if you submit an empty field anyway. */
input:required, input:invalid {
box-shadow: none;
2018-02-26 04:45:11 +00:00
}
textarea {
2023-01-10 14:21:38 +00:00
font-family: CountryFlagEmojiPolyfill, system-ui, -apple-system, SemaphoreRegular, sans-serif, SemaphoreEmoji;
2018-02-26 04:45:11 +00:00
font-size: inherit;
box-sizing: border-box;
2018-03-03 05:55:04 +00:00
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.spin {
animation: spin 0.6s steps(8) infinite;
2018-03-24 16:38:04 +00:00
}
.ellipsis::after {
content: "\2026";
}
/* via https://stackoverflow.com/a/19758620 */
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}
/* this gets injected as raw HTML, so it's easiest to just define it in global.scss */
.inline-custom-emoji {
width: 1.4em;
height: 1.4em;
margin: -0.1em 0;
object-fit: contain;
vertical-align: middle;
}
.inline-emoji {
2023-01-10 14:21:38 +00:00
font-family: CountryFlagEmojiPolyfill, SemaphoreEmoji, sans-serif;
}
.invisible {
/* copied from Mastodon */
font-size: 0;
line-height: 0;
display: inline-block;
width: 0;
height: 0;
position: absolute;
}