-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.scss
56 lines (48 loc) · 899 Bytes
/
base.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
$white1: rgb(252, 252, 252);
$white2: rgb(233, 233, 233);
$gray1: rgb(133, 133, 133);
$color1: rgb(101, 0, 0);
$small: 2px;
$medium: 1rem / 3;
#__bs_notify__ {
font-size: 0.5rem !important;
padding: 0.2rem !important;
}
html,
body {
background-color: $white1;
height: 100%;
margin: 0;
}
main {
padding: 1rem;
}
.component {
border: 1px solid $gray1;
display: inline-block;
padding: 1rem;
position: relative;
legend {
bottom: 0;
color: $gray1;
cursor: pointer;
font-size: $medium * 2;
font-family: sans-serif;
position: absolute;
right: 0;
}
.bar {
background-color: $white2;
border-radius: $medium;
display: block;
border: 1px solid $gray1;
}
button.active {
background-color: $gray1;
border: 1px solid $gray1;
border-radius: ($small * 1.5);
color: white;
padding: $small ($small * 3.5);
}
}
//