-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathglobal.css
152 lines (132 loc) · 2.32 KB
/
global.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
@import "node_modules/bootstrap/dist/css/bootstrap.css";
@import "custom-theme.css";
html,
body {
height: 100vh;
width: 100vw;
}
body {
background-color: rgb(254, 254, 254);
}
@media screen and (min-width: 768px) {
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
background-color: #f5f5f5;
border-radius: 10px;
}
::-webkit-scrollbar {
width: 10px;
background-color: #f5f5f5;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
background: #a7bcf9;
}
}
.work-panel {
margin-top: 1rem;
}
.panel {
border-radius: 10px;
background-color: white;
}
.accordion {
position: relative;
}
.form-label {
margin-bottom: 0;
}
.custom-form-control div {
display: flex;
}
.custom-form-control input {
border-left: 0px;
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
}
.custom-form-control i {
width: 40px;
font-size: 1.5rem;
border-right: 0px;
border-top-right-radius: 0px;
border-bottom-right-radius: 0px;
}
/* SPINNER */
.lds-ripple {
display: inline-block;
position: relative;
width: 80px;
height: 80px;
}
.lds-ripple div {
position: absolute;
border: 4px solid #4169e1;
opacity: 1;
border-radius: 50%;
animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
animation-delay: -0.5s;
}
@keyframes lds-ripple {
0% {
top: 36px;
left: 36px;
width: 0;
height: 0;
opacity: 0;
}
4.9% {
top: 36px;
left: 36px;
width: 0;
height: 0;
opacity: 0;
}
5% {
top: 36px;
left: 36px;
width: 0;
height: 0;
opacity: 1;
}
100% {
top: 0px;
left: 0px;
width: 72px;
height: 72px;
opacity: 0;
}
}
.smart-form-btn-container button {
border: none;
background: none;
}
/* PULSATING DOT */
.blob {
background: #198754;
border-radius: 50%;
height: 13px;
width: 13px;
box-shadow: 0 0 0 0 rgba(25, 135, 84, 1);
transform: scale(1);
animation: pulse 2s infinite;
}
.blob.inactive {
background-color: red;
animation: none;
}
@keyframes pulse {
0% {
transform: scale(0.95);
box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.7);
}
70% {
transform: scale(1);
box-shadow: 0 0 0 10px rgba(25, 135, 84, 0);
}
100% {
transform: scale(0.95);
box-shadow: 0 0 0 0 rgba(25, 135, 84, 0);
}
}