- 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
83 lines
1.9 KiB
SCSS
83 lines
1.9 KiB
SCSS
$defaultEase: cubic-bezier(.28,.3,.09,.82);
|
|
|
|
|
|
$background1: black;
|
|
$background2: #010a13;
|
|
$background3: #1e2328;
|
|
$background4: #0d141c;
|
|
|
|
$color1: #f1e6d4;
|
|
$color2: #878683;
|
|
$color3: #797974;
|
|
$color4: #3c3c41;
|
|
$color5: #a09b8c;
|
|
$color6: #cdbe91;
|
|
$color7: #c89b3c;
|
|
$color8: #463714;
|
|
$color9: #1e282d;
|
|
$color10: #3c3732;
|
|
$color11: #31353a;
|
|
|
|
$link-color1: #0080b9;
|
|
$link-color2: #52abd1;
|
|
|
|
$attr1: #aa1b32;
|
|
$attr2: #6b4497;
|
|
$attr3: #06a341;
|
|
$attr4: #3c3c41;
|
|
$attr5: #aea000;
|
|
$attr6: #005177;
|
|
$attr7: #d1c6a4;
|
|
$attr8: #ac6000;
|
|
// $attr1color1: #ad1e36;
|
|
// $attr1color2: #c31532;
|
|
// $attr1color3: #e44d4c;
|
|
// $attr1color4: #d51131;
|
|
// $attr1color5: #ebbfb0;
|
|
// $attr2color1: #51188b;
|
|
// $attr2color2: #56119c;
|
|
// $attr2color3: #744cc6;
|
|
// $attr2color4: #5b0daa;
|
|
// $attr2color5: #b1aedd;
|
|
// $attr3color1: #58913b;
|
|
// $attr3color2: #5ba138;
|
|
// $attr3color3: #79c66a;
|
|
// $attr3color4: #5fae38;
|
|
// $attr3color5: #bcdfbf;
|
|
// $attr4color1: #151515;
|
|
// $attr4color2: #161616;
|
|
// $attr4color3: #5b5b5b;
|
|
// $attr4color4: #171717;
|
|
// $attr4color5: #adadad;
|
|
// $attr5color1: #ad891e;
|
|
// $attr5color2: #c39715;
|
|
// $attr5color3: #e4d64c;
|
|
// $attr5color4: #d5a311;
|
|
// $attr5color5: #ebc4b0;
|
|
// $attr6color1: #1e7dad;
|
|
// $attr6color2: #1589c3;
|
|
// $attr6color3: #4cc9e4;
|
|
// $attr6color4: #1193d5;
|
|
// $attr6color5: #b0ebe6;
|
|
// $attr7color1: #b8b8b8;
|
|
// $attr7color2: #c4c4c4;
|
|
// $attr7color3: #d6d6d6;
|
|
// $attr7color4: #cfcfcf;
|
|
// $attr7color5: #eee;
|
|
// $attr8color1: #ad581e;
|
|
// $attr8color2: #c35a15;
|
|
// $attr8color3: #e4a14c;
|
|
// $attr8color4: #d55f11;
|
|
// $attr8color5: #ebe0b0;
|
|
|
|
$print-border: 0.25mm solid black;
|
|
|
|
$titlebar-height: 80px;
|
|
// $titlebar-height: 76px;
|
|
|
|
//@mixin defaultEasing($property, $duration: 0.3s) {
|
|
@mixin defaultEasing($property, $duration: 0.45s) {
|
|
// @include transition($property $duration cubic-bezier(.28,.3,.09,.82));
|
|
@include transition($property $duration cubic-bezier(.23, 1, .32, 1));
|
|
}
|