-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.scss
113 lines (98 loc) · 2.06 KB
/
main.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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
@import "https://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,500italic,700,700italic,900,900italic&subset=latin,cyrillic";
body {
transition: filter 300ms ease-in-out;
}
.flex-wrapper {
display: flex;
flex-direction: column;
align-items: center;
}
.single-chart {
width: 33%;
justify-content: space-around;
}
.circular-chart {
display: block;
margin: 10px auto;
max-width: 80%;
max-height: 250px;
}
.circle-bg {
fill: none;
stroke: #eee;
stroke-width: 3.8;
}
.circle {
fill: none;
stroke-width: 2.8;
stroke-linecap: round;
animation: progress 1s ease-out forwards;
transition: all 50ms ease-in-out;
display: none;
}
@keyframes progress {
0% {
stroke-dasharray: 0 100;
}
}
.circular-chart.blue .circle {
stroke: #5677fc;
}
.percentage {
fill: #666;
font-family: "Roboto", "Helvetica Neue, Helvetica, Arial", sans-serif;
font-size: 0.5em;
text-anchor: middle;
}
.btn {
min-width: 88px;
padding: 10px 14px;
outline: 0;
outline-offset: 0;
border: 0;
border-radius: 2px;
background-color: #0d6efd;
font-size: 14px;
font-weight: 400;
line-height: 1.1;
text-transform: uppercase;
letter-spacing: inherit;
color: #fff;
font-family: "Roboto", "Helvetica Neue, Helvetica, Arial", sans-serif;
text-align: center;
white-space: nowrap;
vertical-align: middle;
cursor: pointer;
transition: all 0.15s ease-in-out;
box-shadow: none;
&:hover {
box-shadow: none;
background-color: #0b5ed7;
}
&:active,
&.active,
&:active:focus,
&.active:focus {
box-shadow: 0 0 0 0.25rem rgb(49 132 253 / 50%);
background-color: #0a58ca;
}
&:focus {
box-shadow: none;
background-color: #0b5ed7;
}
}
.alert {
color: #084298;
background-color: #cfe2ff;
border-color: #b6d4fe;
position: relative;
padding: 1rem 1rem;
margin: 1rem;
border: 1px solid transparent;
border-radius: 0.25rem;
font-family: "Roboto", "Helvetica Neue, Helvetica, Arial", sans-serif;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
display: none;
}