- Normalized many SCSS files as deep as possible - Fixed print css to display all 6 pages - Fixed sheet header to match original sheet header - Fixed issue with range property for ranged items
42 lines
508 B
SCSS
42 lines
508 B
SCSS
* {
|
|
box-sizing: border-box;
|
|
-ms-overflow-style: none;
|
|
|
|
&:not(input):not(textarea) {
|
|
-moz-user-select: none;
|
|
-o-user-select: none;
|
|
-webkit-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
}
|
|
|
|
a {
|
|
color: $link-color1;
|
|
|
|
&:hover {
|
|
color: $link-color2;
|
|
}
|
|
}
|
|
|
|
p {
|
|
&:first-child {
|
|
margin: 0;
|
|
}
|
|
|
|
margin: 10px 0 0;
|
|
|
|
&.featured {
|
|
font-weight: 500;
|
|
color: $color1;
|
|
}
|
|
}
|
|
|
|
.default-1-1 {
|
|
width: 100%;
|
|
}
|
|
|
|
@import "components/_Components";
|
|
@import "views/_Views";
|
|
@import "Print";
|