This repository has been archived by the owner on Nov 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathctrl.css
93 lines (77 loc) · 1.61 KB
/
ctrl.css
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
body {
font-size: .875rem;
line-height: 1.375;
}
hr {
margin-top: 1.5rem;
margin-bottom: 1.5rem;
border: 0;
border-bottom: 1px solid rgba(0, 0, 0, .5);
}
.v100 { min-height: 100vh }
.x1 { min-height: 3rem }
.x2 { min-height: 6rem }
.x3 { min-height: 9rem }
.x4 { min-height: 12rem }
.nav-item {
font-size: .875rem;
font-weight: bold;
line-height: 1rem;
text-decoration: none;
display: block;
padding: 1rem 1rem;
color: inherit;
border-radius: 2px;
}
.nav-item:hover {
color: #0cf;
background-color: rgba(0, 0, 0, .25);
}
.nav-item.is-active {
color: #134;
background-color: #0cf;
}
.btn {
font-family: inherit;
font-size: inherit;
font-weight: bold;
text-decoration: none;
cursor: pointer;
display: inline-block;
padding: .5rem;
margin: 0;
color: #134;
background-color: #abc;
border: 0;
border-radius: 2px;
}
.btn:hover {
box-shadow: inset 0 0 0 999px rgba(0, 32, 64, .125);
}
.btn-primary {
background-color: #0cf;
}
.svg-chart {
width: 100%;
height: auto;
max-height: 100%;
fill: currentcolor;
overflow: visible;
}
.svg-stroke {
fill: none;
stroke: currentcolor;
vector-effect: non-scaling-stroke;
}
.black { color: #123 }
.white { color: #fff }
.blue { color: #0cf }
.gray { color: #abc }
.bg-black { background-color: #123 }
.bg-white { background-color: #fff }
.bg-blue { background-color: #0cf }
.bg-darken-1 { background-color: rgba(0, 0, 0, .0625) }
.bg-darken-2 { background-color: rgba(0, 0, 0, .125) }
.bg-darken-3 { background-color: rgba(0, 0, 0, .25) }
.bg-darken-4 { background-color: rgba(0, 0, 0, .375) }
.muted { opacity: .25 }