2019-06-03 03:31:38 +00:00
|
|
|
@import 'theme';
|
2020-02-09 04:30:10 +00:00
|
|
|
@import 'inputs';
|
2019-10-28 01:54:37 +00:00
|
|
|
@import 'states';
|
2019-11-13 02:14:24 +00:00
|
|
|
@import 'tooltip';
|
2019-06-03 03:31:38 +00:00
|
|
|
|
|
|
|
html,
|
|
|
|
body {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2019-07-06 03:29:12 +00:00
|
|
|
color: $text;
|
2019-06-03 03:31:38 +00:00
|
|
|
margin: 0;
|
2020-02-29 21:47:48 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-06-03 03:31:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.nolist {
|
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.heading {
|
2019-11-28 04:36:22 +00:00
|
|
|
color: $shadow;
|
2019-11-12 00:22:20 +00:00
|
|
|
padding: 0;
|
2019-06-03 03:31:38 +00:00
|
|
|
margin: 0 0 1rem 0;
|
2019-11-12 00:22:20 +00:00
|
|
|
font-size: 1.5rem;
|
2019-06-03 03:31:38 +00:00
|
|
|
}
|
2019-11-09 03:43:58 +00:00
|
|
|
|
|
|
|
.icon.icon-href {
|
|
|
|
fill: $shadow;
|
|
|
|
|
|
|
|
:hover {
|
|
|
|
fill: $primary;
|
|
|
|
}
|
|
|
|
}
|
2020-01-24 22:36:06 +00:00
|
|
|
|
|
|
|
.expand {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2020-02-20 21:27:00 +00:00
|
|
|
padding: .5rem .25rem;
|
2020-01-24 22:36:06 +00:00
|
|
|
font-weight: bold;
|
|
|
|
font-size: .9rem;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
fill: $shadow;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: $shadow-hint;
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
fill: $shadow-strong;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.expand-sidebar:hover {
|
|
|
|
background: $shadow-hint;
|
|
|
|
}
|
|
|
|
|
|
|
|
.expand-header {
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: $shadow-hint;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.collapse-header {
|
|
|
|
width: 100%;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
padding: 0;
|
|
|
|
background: $profile;
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
width: 100%;
|
|
|
|
fill: $highlight;
|
|
|
|
padding: .5rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover .icon {
|
|
|
|
background: $highlight-hint;
|
|
|
|
fill: $text-contrast;
|
|
|
|
}
|
|
|
|
}
|