2017-04-02 19:56:47 -04:00
|
|
|
html {
|
|
|
|
box-sizing: border-box;
|
2017-04-22 19:46:20 -04:00
|
|
|
height: 100%;
|
2019-09-08 12:01:17 -04:00
|
|
|
overflow-y: auto !important;
|
2017-04-02 19:56:47 -04:00
|
|
|
}
|
|
|
|
*, *:before, *:after {
|
|
|
|
box-sizing: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
[v-cloak], .is-hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2018-08-11 18:16:56 -04:00
|
|
|
#root {
|
2017-04-22 19:46:20 -04:00
|
|
|
position: relative;
|
|
|
|
min-height: 100%;
|
2017-09-24 23:22:33 -04:00
|
|
|
|
|
|
|
&.is-fullscreen {
|
|
|
|
height: 100vh;
|
|
|
|
}
|
2017-04-22 19:46:20 -04:00
|
|
|
}
|
2018-10-08 00:17:31 -04:00
|
|
|
|
2019-08-04 23:53:21 -04:00
|
|
|
.v-application--wrap {
|
2019-01-26 18:35:56 -05:00
|
|
|
transition: all 1.2s ease;
|
|
|
|
transform-origin: 50% 50%;
|
2019-08-04 23:53:21 -04:00
|
|
|
// background-color: #FFF;
|
2019-01-26 18:35:56 -05:00
|
|
|
|
|
|
|
@at-root .theme--dark & {
|
|
|
|
background-color: mc('grey', '900');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-04 23:53:21 -04:00
|
|
|
.v-application {
|
|
|
|
@for $i from 0 through 25 {
|
|
|
|
.radius-#{$i} {
|
|
|
|
border-radius: #{$i}px;
|
|
|
|
}
|
2018-10-08 00:17:31 -04:00
|
|
|
}
|
2018-12-01 23:03:14 -05:00
|
|
|
|
2019-08-04 23:53:21 -04:00
|
|
|
@for $i from 1 through 5 {
|
|
|
|
.grey.darken-2-d#{$i} {
|
|
|
|
background-color: darken(mc('grey', '700'), percentage($i/100)) !important;
|
|
|
|
border-color: darken(mc('grey', '700'), percentage($i/100)) !important;
|
|
|
|
}
|
|
|
|
.grey.darken-2-l#{$i} {
|
|
|
|
background-color: lighten(mc('grey', '700'), percentage($i/100)) !important;
|
|
|
|
border-color: lighten(mc('grey', '700'), percentage($i/100)) !important;
|
|
|
|
}
|
|
|
|
.grey.darken-3-d#{$i} {
|
|
|
|
background-color: darken(mc('grey', '800'), percentage($i/100)) !important;
|
|
|
|
border-color: darken(mc('grey', '800'), percentage($i/100)) !important;
|
|
|
|
}
|
|
|
|
.grey.darken-3-l#{$i} {
|
|
|
|
background-color: lighten(mc('grey', '800'), percentage($i/100)) !important;
|
|
|
|
border-color: lighten(mc('grey', '800'), percentage($i/100)) !important;
|
|
|
|
}
|
|
|
|
.grey.darken-4-d#{$i} {
|
|
|
|
background-color: darken(mc('grey', '900'), percentage($i/100)) !important;
|
|
|
|
border-color: darken(mc('grey', '900'), percentage($i/100)) !important;
|
|
|
|
}
|
|
|
|
.grey.darken-4-l#{$i} {
|
|
|
|
background-color: lighten(mc('grey', '900'), percentage($i/100)) !important;
|
|
|
|
border-color: lighten(mc('grey', '900'), percentage($i/100)) !important;
|
|
|
|
}
|
2018-12-01 23:03:14 -05:00
|
|
|
}
|
2019-08-04 23:53:21 -04:00
|
|
|
.grey.darken-5 {
|
|
|
|
background-color: #0C0C0C !important;
|
|
|
|
border-color: #0C0C0C !important;
|
2018-12-01 23:03:14 -05:00
|
|
|
}
|
2019-08-04 23:53:21 -04:00
|
|
|
|
|
|
|
.blue.darken-5 {
|
|
|
|
background-color: darken(mc('blue', '900'), 20%) !important;
|
|
|
|
border-color: darken(mc('blue', '900'), 20%) !important;
|
2018-12-01 23:03:14 -05:00
|
|
|
}
|
2019-08-04 23:53:21 -04:00
|
|
|
.indigo.darken-5 {
|
|
|
|
background-color: darken(mc('indigo', '900'), 10%) !important;
|
|
|
|
border-color: darken(mc('indigo', '900'), 10%) !important;
|
2018-12-01 23:03:14 -05:00
|
|
|
}
|
|
|
|
}
|