-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
48 lines (38 loc) · 825 Bytes
/
styles.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
.w-rem-24 {
width: 24rem;
}
.h-rem-20 {
height: 20rem;
}
.mb05 {
margin-bottom: 0.125rem;
}
.t-cb { transition: all .3s cubic-bezier(.33, 1, .66, 1); }
.checkbox:checked + .checkbox-wrapper {
background-color: #19a974;
.checkbox-toggle {
left: 1rem;
background-color: #ccc;
}
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.spinner {
animation: spin 2s linear infinite;
}
.bt--blue {
border-top-color: #357edd;
}
.clamp-text {
white-space: nowrap; /* Ensure the text is on a single line */
overflow: hidden; /* Hide overflow text */
text-overflow: ellipsis; /* Show ellipsis (...) at the end */
}
/* Show the full text on hover */
.clamp-text:hover {
white-space: normal;
overflow: visible;
text-overflow: clip;
}