wikijs-fork/client/scss/base/base.scss

66 lines
1.7 KiB
SCSS
Raw Normal View History

2017-04-02 23:56:47 +00:00
html {
box-sizing: border-box;
height: 100%;
2019-01-26 23:35:56 +00:00
background-color: mc('grey', '900');
2017-04-02 23:56:47 +00:00
}
*, *:before, *:after {
box-sizing: inherit;
}
[v-cloak], .is-hidden {
display: none;
}
#root {
position: relative;
min-height: 100%;
&.is-fullscreen {
height: 100vh;
}
}
2019-01-26 23:35:56 +00:00
.application--wrap {
transition: all 1.2s ease;
transform-origin: 50% 50%;
background-color: #FFF;
@at-root .theme--dark & {
background-color: mc('grey', '900');
}
}
2018-11-25 06:28:20 +00:00
@for $i from 0 through 25 {
.radius-#{$i} {
border-radius: #{$i}px;
}
}
2018-12-02 04:03:14 +00: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;
}
}