2016-10-31 21:04:15 +03:00
|
|
|
//- 💫 CSS > BASE > LAYOUT
|
2016-10-03 21:19:13 +03:00
|
|
|
|
|
|
|
//- HTML
|
|
|
|
|
|
|
|
html
|
2016-10-31 21:04:15 +03:00
|
|
|
font-size: $type-base
|
2016-10-03 21:19:13 +03:00
|
|
|
|
|
|
|
|
|
|
|
//- Body
|
|
|
|
|
|
|
|
body
|
|
|
|
animation: fadeIn 0.25s ease
|
|
|
|
background: $color-back
|
|
|
|
color: $color-front
|
|
|
|
|
|
|
|
|
|
|
|
//- Paragraphs
|
|
|
|
|
|
|
|
p
|
2016-10-31 21:04:15 +03:00
|
|
|
@extend .o-block, .u-text
|
2016-10-03 21:19:13 +03:00
|
|
|
|
|
|
|
|
|
|
|
//- Links
|
|
|
|
|
2017-03-16 23:52:45 +03:00
|
|
|
main p a,
|
|
|
|
main table a,
|
|
|
|
main > *:not(footer) li a,
|
|
|
|
main aside a
|
2016-10-03 21:19:13 +03:00
|
|
|
@extend .u-link
|
|
|
|
|
|
|
|
|
|
|
|
//- Selection
|
|
|
|
|
|
|
|
::selection
|
|
|
|
background: $color-theme
|
|
|
|
color: $color-back
|
2017-03-26 12:14:16 +03:00
|
|
|
text-shadow: none
|