akkoma-fe/src/App.scss

364 lines
6.1 KiB
SCSS
Raw Normal View History

@import './_variables.scss';
2016-11-05 10:01:17 +00:00
#app {
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
background-position: 0 50px;
min-height: 100vh;
2016-10-26 17:03:55 +00:00
}
2017-11-02 09:27:52 +00:00
i {
user-select: none;
}
2016-10-26 17:03:55 +00:00
h4 {
margin: 0;
2016-10-26 17:03:55 +00:00
}
#content {
box-sizing: border-box;
padding-top: 60px;
margin: auto;
min-height: 100vh;
max-width: 980px;
background-color: rgba(0,0,0,0.15);
align-content: flex-start;
2016-10-26 17:03:55 +00:00
}
.text-center {
text-align: center;
2016-10-26 17:03:55 +00:00
}
body {
font-family: sans-serif;
font-size: 14px;
margin: 0;
color: $fallback--fg;
color: var(--fg, $fallback--fg);
2016-10-26 17:03:55 +00:00
}
a {
text-decoration: none;
color: $fallback--link;
color: var(--link, $fallback--link);
2016-10-26 17:03:55 +00:00
}
2017-02-18 07:48:35 +00:00
button{
user-select: none;
color: $fallback--faint;
color: var(--faint, $fallback--faint);
background-color: $fallback--btn;
background-color: var(--btn, $fallback--btn);
border: none;
border-radius: 5px;
cursor: pointer;
border-top: 1px solid rgba(255, 255, 255, 0.2);
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
box-shadow: 0px 0px 2px black;
font-size: 14px;
font-family: sans-serif;
&:hover {
box-shadow: 0px 0px 4px rgba(255, 255, 255, 0.3);
}
&:disabled {
cursor: not-allowed;
opacity: 0.5;
}
&.pressed {
color: $fallback--faint;
color: var(--faint, $fallback--faint);
background-color: $fallback--bg;
background-color: var(--bg, $fallback--bg)
}
2017-02-18 07:48:35 +00:00
}
input, textarea, select {
border: none;
border-radius: 5px;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
border-top: 1px solid rgba(0, 0, 0, 0.2);
box-shadow: 0px 0px 2px black inset;
background-color: $fallback--lightBg;
background-color: var(--lightBg, $fallback--lightBg);
color: $fallback--lightFg;
color: var(--lightFg, $fallback--lightFg);
font-family: sans-serif;
font-size: 14px;
padding: 8px 7px 4px;
// TODO: Restyle <select> in a decent way. Needs different markup
// -webkit-appearance:none;
// -moz-appearance:none;
// appearance:none;
&[type=radio],
&[type=checkbox] {
display: none;
&:checked + label::before {
color: $fallback--fg;
color: var(--fg, $fallback--fg);
}
+ label::before {
display: inline-block;
content: '';
transition: color 200ms;
width: 1.1em;
height: 1.1em;
border-radius: 2px;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
border-top: 1px solid rgba(0, 0, 0, 0.2);
box-shadow: 0px 0px 2px black inset;
margin-right: .5em;
background-color: $fallback--btn;
background-color: var(--btn, $fallback--btn);
vertical-align: baseline;
text-align: center;
line-height: 1.1em;
font-size: 1.1em;
box-sizing: border-box;
color: transparent;
overflow: hidden;
}
}
}
.icon-cancel,
.icon-reply,
.icon-retweet,
.icon-star-empty,
.icon-eye-off,
.icon-binoculars,
.icon-plus-squared,
.icon-spin4 {
color: $fallback--icon;
color: var(--icon, $fallback--icon)
}
2016-10-26 17:03:55 +00:00
.container {
display: flex;
flex-wrap: wrap;
margin: 0;
padding: 0 10px 0 10px;
2016-10-26 17:03:55 +00:00
}
.gaps {
margin: -1em 0 0 -1em;
2016-10-26 17:03:55 +00:00
}
.item {
flex: 1;
line-height: 25px;
height: 25px;
overflow: hidden;
.nav-icon {
font-size: 1.1em;
margin-left: 0.4em;
}
2016-10-26 17:03:55 +00:00
}
.gaps > .item {
padding: 1em 0 0 1em;
2016-10-26 17:03:55 +00:00
}
.auto-size {
flex: 1
2016-10-26 17:03:55 +00:00
}
nav {
width: 100%;
align-items: center;
position: fixed;
height: 50px;
.inner-nav {
padding-left: 20px;
padding-right: 20px;
display: flex;
2016-10-26 17:03:55 +00:00
align-items: center;
flex-basis: 970px;
margin: auto;
2016-10-26 17:03:55 +00:00
height: 50px;
background-repeat: no-repeat;
background-position: center;
background-size: contain;
}
2016-10-26 17:03:55 +00:00
}
main-router {
flex: 1;
2016-10-26 17:03:55 +00:00
}
.status.compact {
color: rgba(0, 0, 0, 0.42);
font-weight: 300;
2016-10-26 17:03:55 +00:00
p {
margin: 0;
font-size: 0.8em
}
2016-10-26 17:03:55 +00:00
}
/* Panel */
.panel {
display: flex;
flex-direction: column;
margin: 0.5em;
2016-10-26 17:03:55 +00:00
background-color: $fallback--bg;
background-color: var(--bg, $fallback--bg);
border-radius: 10px;
border-radius: $fallback--panelRadius;
border-radius: var(--panelRadius, 10px);
box-shadow: 1px 1px 4px rgba(0,0,0,.6);
overflow: hidden;
}
.panel-body:empty::before {
content: "¯\\_(ツ)_/¯"; // Could use words but it'd require translations
display: block;
margin: 1em;
text-align: center;
2016-10-26 17:03:55 +00:00
}
.panel-heading {
border-radius: 10px 10px 0 0;
background-size: cover;
padding: 0.6em 1.0em;
text-align: left;
font-size: 1.3em;
line-height: 24px;
background-color: $fallback--btn;
background-color: var(--btn, $fallback--btn);
2016-10-26 17:03:55 +00:00
}
.panel-footer {
border-radius: 0 0 10px 10px;
2016-10-26 17:03:55 +00:00
}
.panel-body > p {
line-height: 18px;
padding: 1em;
margin: 0;
2016-10-26 17:03:55 +00:00
}
.container > * {
min-width: 0px;
2016-10-26 17:03:55 +00:00
}
.fa {
color: grey;
2016-10-26 17:03:55 +00:00
}
2016-11-03 16:28:44 +00:00
nav {
z-index: 1000;
background-color: $fallback--btn;
background-color: var(--btn, $fallback--btn);
color: $fallback--faint;
color: var(--faint, $fallback--faint);
box-shadow: 0px 0px 4px rgba(0,0,0,.6);
2016-11-03 16:28:44 +00:00
}
2016-11-28 13:35:21 +00:00
.fade-enter-active, .fade-leave-active {
transition: opacity .2s
}
.fade-enter, .fade-leave-active {
opacity: 0
}
2016-12-02 13:33:03 +00:00
.main {
flex-basis: 60%;
flex-grow: 1;
flex-shrink: 1;
2016-12-02 13:33:03 +00:00
}
2017-01-17 16:27:39 +00:00
.sidebar-bounds {
flex: 0;
flex-basis: 35%;
2017-01-17 16:27:39 +00:00
}
.sidebar-flexer {
flex: 1;
flex-basis: 345px;
width: 365px;
}
2017-01-17 16:27:39 +00:00
.mobile-shown {
display: none;
2017-01-17 16:27:39 +00:00
}
.panel-switcher {
display: none;
width: 100%;
height: 46px;
button {
display: block;
flex: 1;
max-height: 32px;
margin: 0.5em;
padding: 0.5em;
}
2017-01-17 16:27:39 +00:00
}
@media all and (min-width: 960px) {
body {
overflow-y: scroll;
}
.sidebar-bounds {
overflow: hidden;
max-height: 100vh;
width: 345px;
position: fixed;
margin-top: -10px;
.sidebar-scroller {
height: 96vh;
width: 365px;
padding-top: 10px;
padding-right: 50px;
overflow-x: hidden;
overflow-y: scroll;
}
.sidebar {
width: 345px;
}
}
.sidebar-flexer {
max-height: 96vh;
flex-shrink: 0;
flex-grow: 0;
}
}
2017-01-17 16:27:39 +00:00
@media all and (max-width: 959px) {
.mobile-hidden {
display: none;
}
2017-01-17 16:27:39 +00:00
.panel-switcher {
display: flex;
}
.container {
padding: 0 0 0 0;
}
.panel {
margin: 0.5em 0 0.5em 0;
}
2017-01-17 16:27:39 +00:00
}
2017-02-16 21:25:41 +00:00
.item.right {
text-align: right;
padding-right: 20px;
2017-02-16 21:25:41 +00:00
}