-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
51 lines (41 loc) · 1.41 KB
/
style.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
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
background-color: #fff;
}
.text-muted { color: #6c757d!important; }
.d-flex { display: flex;}
.flex-column { flex-direction: column;}
.justify-content-between { justify-content: space-between;}
.align-self-stretch { align-self: stretch;}
.align-items-center { align-items: center;}
.bg-light { background-color: #f8f9fa;}
.bg-secondary { background-color: #6c757d;}
.vh-100 { height: 100vh;}
.h-100 { height: 100%;}
.mw-mc{ max-width: max-content;}
.w-100{ width: 100%;}
.p-2 {padding: 0.5rem;}
.m-0 {margin: 0rem;}
.mt-0 {margin-top: 0rem;}
.m-1 {margin: 0.25rem;}
.mr-1 {margin-right: 0.25rem;}
.mt-3 {margin-top: 1rem;}
.mb-3 {margin-bottom: 1rem;}
.overflow-hidden {overflow: hidden;}
.br-1 {border-right: 1px solid black;}
.rounded-circle { border-radius: 50% !important;}
.rounded-pill { border-radius: 50rem !important;}
.toggle { padding: 0.2rem;}
.toggle[data-checked="true"] { background-color: #198754;}
.toggle[data-checked="false"] { background-color: #6c757d;}
.toggle[data-checked="true"] > div { margin-left: 1rem;}
.toggle[data-checked="false"] > div { margin-right: 1rem;}