2017-04-12 14:01:59 +00:00
|
|
|
body {
|
2017-09-01 14:13:31 +00:00
|
|
|
font-family: 'mastodon-font-sans-serif', sans-serif;
|
2017-07-11 13:27:59 +00:00
|
|
|
background: $ui-base-color;
|
2017-04-12 14:01:59 +00:00
|
|
|
background-size: cover;
|
|
|
|
background-attachment: fixed;
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 18px;
|
|
|
|
font-weight: 400;
|
2017-05-08 13:57:49 +00:00
|
|
|
color: $primary-text-color;
|
2017-09-01 19:01:23 +00:00
|
|
|
padding-bottom: 20px;
|
2017-04-12 14:01:59 +00:00
|
|
|
text-rendering: optimizelegibility;
|
|
|
|
font-feature-settings: "kern";
|
|
|
|
text-size-adjust: none;
|
2017-07-06 19:26:07 +00:00
|
|
|
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
|
|
|
-webkit-tap-highlight-color: transparent;
|
2017-04-12 14:01:59 +00:00
|
|
|
|
2017-09-01 14:13:31 +00:00
|
|
|
&.system-font {
|
|
|
|
// system-ui => standard property (Chrome/Android WebView 56+, Opera 43+, Safari 11+)
|
|
|
|
// -apple-system => Safari <11 specific
|
|
|
|
// BlinkMacSystemFont => Chrome <56 on macOS specific
|
|
|
|
// Segoe UI => Windows 7/8/10
|
|
|
|
// Oxygen => KDE
|
|
|
|
// Ubuntu => Unity/Ubuntu
|
|
|
|
// Cantarell => GNOME
|
|
|
|
// Fira Sans => Firefox OS
|
|
|
|
// Droid Sans => Older Androids (<4.0)
|
|
|
|
// Helvetica Neue => Older macOS <10.11
|
|
|
|
// mastodon-font-sans-serif => web-font (Roboto) fallback and newer Androids (>=4.0)
|
|
|
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", mastodon-font-sans-serif, sans-serif;
|
2017-08-24 17:28:49 +00:00
|
|
|
}
|
|
|
|
|
2017-10-11 19:18:46 +00:00
|
|
|
&.app-body {
|
2017-10-17 18:38:16 +00:00
|
|
|
position: absolute;
|
2017-04-12 14:01:59 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
padding: 0;
|
2017-05-08 13:57:49 +00:00
|
|
|
background: $ui-base-color;
|
2017-04-12 14:01:59 +00:00
|
|
|
}
|
|
|
|
|
2017-07-11 13:27:59 +00:00
|
|
|
&.about-body {
|
|
|
|
background: darken($ui-base-color, 8%);
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2017-10-07 18:00:35 +00:00
|
|
|
&.tag-body {
|
|
|
|
background: darken($ui-base-color, 8%);
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2018-02-16 06:22:20 +00:00
|
|
|
&.player {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2017-04-12 14:01:59 +00:00
|
|
|
&.embed {
|
|
|
|
background: transparent;
|
|
|
|
margin: 0;
|
2017-09-09 14:23:44 +00:00
|
|
|
padding-bottom: 0;
|
2017-04-12 14:01:59 +00:00
|
|
|
|
|
|
|
.container {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.admin {
|
2017-05-08 13:57:49 +00:00
|
|
|
background: darken($ui-base-color, 4%);
|
2017-04-12 14:01:59 +00:00
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2017-09-25 02:04:04 +00:00
|
|
|
|
|
|
|
&.error {
|
2017-10-11 19:18:46 +00:00
|
|
|
position: absolute;
|
2017-09-25 02:04:04 +00:00
|
|
|
text-align: center;
|
|
|
|
color: $ui-primary-color;
|
2017-10-11 19:18:46 +00:00
|
|
|
background: $ui-base-color;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
padding: 0;
|
2017-10-09 18:51:36 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2017-09-25 02:04:04 +00:00
|
|
|
|
2017-10-11 19:18:46 +00:00
|
|
|
.dialog {
|
|
|
|
vertical-align: middle;
|
|
|
|
margin: 20px;
|
|
|
|
|
|
|
|
img {
|
|
|
|
display: block;
|
|
|
|
max-width: 470px;
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
margin-top: -120px;
|
|
|
|
}
|
2017-09-25 02:04:04 +00:00
|
|
|
|
2017-10-11 19:18:46 +00:00
|
|
|
h1 {
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 28px;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
2017-09-25 02:04:04 +00:00
|
|
|
}
|
|
|
|
}
|
2017-04-12 14:01:59 +00:00
|
|
|
}
|
|
|
|
|
2017-05-25 19:15:41 +00:00
|
|
|
button {
|
|
|
|
font-family: inherit;
|
2017-05-26 22:53:25 +00:00
|
|
|
cursor: pointer;
|
2017-05-25 19:15:41 +00:00
|
|
|
|
2017-05-26 22:53:25 +00:00
|
|
|
&:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
2017-04-12 14:01:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.app-holder {
|
2017-10-05 23:07:59 +00:00
|
|
|
&,
|
|
|
|
& > div {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2018-02-18 15:32:58 +00:00
|
|
|
outline: 0 !important;
|
2017-10-05 23:07:59 +00:00
|
|
|
}
|
2017-04-12 14:01:59 +00:00
|
|
|
}
|