35 lines
423 B
SCSS
35 lines
423 B
SCSS
@import './base/reset';
|
|
@import './base/variables';
|
|
@import './base/colors';
|
|
@import './base/grid-flex';
|
|
@import './base/layout';
|
|
@import './base/fonts';
|
|
@import './base/transitions';
|
|
|
|
|
|
body{
|
|
color: #1a1a1a;
|
|
}
|
|
|
|
#root{
|
|
}
|
|
|
|
.red{
|
|
background-color: red;
|
|
color:white;
|
|
|
|
}
|
|
|
|
header[role="banner"]{
|
|
padding:1em;
|
|
pointer-events: none;
|
|
h1{
|
|
font-weight: 400;
|
|
font-size: 1em;
|
|
}
|
|
}
|
|
|
|
|
|
section[role="main-content"]{
|
|
}
|