wiki-grav/themes/learn2/scss/theme/_core.scss
2022-06-24 18:08:45 +02:00

31 lines
417 B
SCSS

body {
background: $page-bg;
color: $core-text;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a {
color: $core-accent;
&:hover {
color: darken($core-accent, 15%);
}
}
pre {
position: relative;
}
.bg {
background: #fff;
border: 1px solid $body-border;
}
b, strong {
font-weight: $font-weight-bold
}
.default-animation {
@include transition(all 0.5s ease);
}