mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
45 lines
716 B
Sass
45 lines
716 B
Sass
//- ----------------------------------
|
|
//- 💫 BASE > LAYOUT
|
|
//- ----------------------------------
|
|
|
|
//- HTML
|
|
|
|
html
|
|
@include breakpoint(min, lg)
|
|
font-size: $type-base
|
|
|
|
@include breakpoint(max, md)
|
|
font-size: $type-base * 0.8
|
|
|
|
//- Body
|
|
|
|
body
|
|
display: flex
|
|
flex-flow: row wrap
|
|
animation: fadeIn 0.25s ease
|
|
background: $color-back
|
|
color: $color-front
|
|
|
|
|
|
//- Paragraphs
|
|
|
|
p
|
|
@extend .o-block, .u-text-regular, .has-aside
|
|
|
|
.o-content--article &:not([class])
|
|
@extend .u-text-medium
|
|
|
|
|
|
//- Links
|
|
|
|
main p a, main table a, main li a, .c-aside a
|
|
@extend .u-link
|
|
|
|
|
|
//- Selection
|
|
|
|
::selection
|
|
background: $color-theme
|
|
color: $color-back
|
|
text-shadow: none
|