-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
120 lines (95 loc) · 1.72 KB
/
styles.css
File metadata and controls
120 lines (95 loc) · 1.72 KB
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
/*
This CSS file will be included with your plugin, and
available in the app when your plugin is enabled.
If your plugin does not need CSS, delete this file.
*/
:root {
--primary-color: #39adf5;
--success-color: #4afc44;
--warning-color: #ffda1c;
--error-color: #ff0707;
}
.btn {
}
.btn-primary {
border: 1px solid var(--primary-color);
}
.btn-success {
border: 1px solid var(--success-color);
}
.btn-warning {
border: 1px solid var(--warning-color);
}
.btn-error {
border: 1px solid var(--error-color);
}
.w-100 {
width: 100% !important;
}
.w-75 {
width: 75% !important;
}
.w-50 {
width: 50% !important;
}
.w-25 {
width: 25% !important;
}
.w-fit {
width: fit-content !important;
}
.fs-6 {
font-size: 14px !important;
}
.d-flex {
display: flex !important;
}
.justify-content-around {
justify-content: space-around;
}
.no-style-list {
list-style: none;
padding-left: 0;
}
.mt-1 {
margin-top: 1rem;
}
.mr-1 {
margin-right: 1rem;
}
.error {
color: var(--error-color);
margin-top: 1rem;
font-size: 75%;
}
.icon {
position: absolute;
}
.loader-container{
width: 100%;
display: flex;
justify-content: center;
}
.loader {
width: 45px;
aspect-ratio: .75;
--c: no-repeat linear-gradient(#fff 0 0);
background:
var(--c) 0% 50%,
var(--c) 50% 50%,
var(--c) 100% 50%;
animation: l7 1s infinite linear alternate;
}
@keyframes l7 {
0% {background-size: 20% 50% ,20% 50% ,20% 50% }
20% {background-size: 20% 20% ,20% 50% ,20% 50% }
40% {background-size: 20% 100%,20% 20% ,20% 50% }
60% {background-size: 20% 50% ,20% 100%,20% 20% }
80% {background-size: 20% 50% ,20% 50% ,20% 100%}
100%{background-size: 20% 50% ,20% 50% ,20% 50% }
}
.disable{
cursor: not-allowed;
opacity: 0.5;
pointer-events: none;
}