akkoma-fe/src/App.scss

242 lines
3.4 KiB
SCSS
Raw Normal View History

@import './_variables.scss';
2016-11-05 10:01:17 +00:00
#app {
2016-10-26 17:03:55 +00:00
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
background-position: 0 50px;
2016-11-06 16:43:43 +00:00
min-height: 100vh;
2016-10-26 17:03:55 +00:00
}
h4 {
margin: 0;
}
#content {
padding-top: 60px;
}
.text-center {
text-align: center;
}
body {
font-family: sans-serif;
font-size: 14px;
margin: 0;
}
a {
text-decoration: none;
}
2017-02-18 07:48:35 +00:00
button{
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;
2017-06-21 14:32:41 +00:00
font-family: sans-serif;
2017-02-19 11:27:59 +00:00
&:hover {
box-shadow: 0px 0px 4px rgba(255, 255, 255, 0.3);
2017-02-19 11:27:59 +00:00
}
2017-02-18 07:48:35 +00:00
}
2016-10-26 17:03:55 +00:00
.container {
display: flex;
2016-11-12 19:57:54 +00:00
flex-wrap: wrap;
2016-10-26 17:03:55 +00:00
margin: 0;
padding: 0 10px 0 10px;
}
.gaps {
margin: -1em 0 0 -1em;
}
.item {
flex: 1;
line-height: 21px;
height: 21px;
2016-10-26 17:03:55 +00:00
}
.gaps > .item {
padding: 1em 0 0 1em;
}
.auto-size {
flex: 1
}
nav {
width: 100%;
align-items: center;
position: fixed;
height: 50px;
2017-01-16 17:57:03 +00:00
.inner-nav {
2017-02-16 21:36:09 +00:00
padding-left: 20px;
padding-right: 20px;
2017-01-16 17:57:03 +00:00
display: flex;
align-items: center;
2017-02-18 07:48:35 +00:00
flex-basis: 970px;
2017-01-16 17:57:03 +00:00
margin: auto;
2017-02-16 16:44:36 +00:00
height: 50px;
background-repeat: no-repeat;
background-position: center;
background-size: contain;
2017-01-16 17:57:03 +00:00
}
2016-10-26 17:03:55 +00:00
}
main-router {
flex: 1;
}
.status.compact {
color: rgba(0, 0, 0, 0.42);
font-weight: 300;
p {
margin: 0;
font-size: 0.8em
}
}
/* Panel */
.panel {
display: flex;
flex-direction: column;
margin: 0.5em;
border-radius: 10px;
2016-10-26 17:03:55 +00:00
}
.panel-heading {
border-radius: 10px 10px 0 0;
2016-10-26 17:03:55 +00:00
background-size: cover;
padding: 0.6em 1.0em;
text-align: left;
2016-10-26 17:03:55 +00:00
font-size: 1.3em;
line-height: 24px;
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 {
2017-02-18 07:48:35 +00:00
line-height: 18px;
padding: 1em;
margin: 0;
2016-10-26 17:03:55 +00:00
}
#content {
margin: auto;
2017-02-18 07:48:35 +00:00
max-width: 980px;
border-radius: 10px;
padding-bottom: 1em;
background-color: rgba(0,0,0,0.1);
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;
}
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 {
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;
}
.panel-switcher {
display: none;
width: 100%;
button {
display: block;
flex: 1;
margin: 0.5em;
padding: 0.5em;
}
}
@media all and (min-width: 960px) {
.sidebar {
overflow: hidden;
max-height: 100vh;
width: 350px;
position: fixed;
margin-top: -10px;
.sidebar-container {
height: 96vh;
width: 362px;
padding-top: 10px;
padding-right: 20px;
overflow-x: hidden;
overflow-y: scroll;
}
}
.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;
}
.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;
}