Files
optolith-client/js/AppBootstrap.scss
T
Lukas Obermann 0602f421ba Cleaned up SCSS and character sheet print
- 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
2016-12-26 16:16:49 +13:00

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";