17 lines
408 B
SCSS
17 lines
408 B
SCSS
.lama-cleaner {
|
|
display: grid;
|
|
grid-template-areas: 'main-content';
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background-color: var(--page-bg);
|
|
color: var(--page-text-color);
|
|
transition-property: background-color, color;
|
|
transition-duration: 0.2s;
|
|
transition-timing-function: repeat(2, ease-out);
|
|
}
|
|
|
|
a {
|
|
color: inherit; /* blue colors for links too */
|
|
text-decoration: inherit; /* no underline */
|
|
}
|