-
-
Notifications
You must be signed in to change notification settings - Fork 234
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (81 loc) · 1.37 KB
/
style.css
File metadata and controls
94 lines (81 loc) · 1.37 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
.jumbotron {
padding: 1.5rem 2rem;
margin-bottom: 1rem;
text-align: center;
}
.jumbotron h2 {
font-size: 1.5rem;
font-weight: 300;
margin-top: 0.5rem;
}
.form-group {
width: 400px;
height: 300px;
padding-left: 50px;
}
#check {
margin-left: 0;
margin-top: 10px;
}
.btn {
display: block;
}
.form-control {
border-style: solid;
border-color: lightslategrey;
}
.form-check-label {
padding-left: 20px;
margin: 5px 0px 5px 0px;
}
.btn-info {
background-color: blue;
border-color: blue;
color: #fff;
margin: 20px 20px 20px 50px;
}
.btn-success {
background-color: #0d4a0d;
border-color: #0d4a0d;
color: #fff;
}
.btn-success:hover,
.btn-success:focus {
background-color: #1f6e1f;
border-color: #1f6e1f;
color: #fff;
}
.btn-warning {
background-color: #9f6000;
border-color: #9f6000;
color: #fff;
}
.btn-warning:hover,
.btn-warning:focus {
background-color: #b76e01;
border-color: #b76e01;
color: #fff;
}
/* for delete alert */
.toast {
position: fixed;
top: 130px;
left: 50%;
font-size: 1rem;
transform: translateX(-50%);
background: #a84600;
color: white;
min-width: 300px;
width: fit-content;
white-space: normal;
word-wrap: break-word;
text-align: center;
padding: 10px 15px;
border-radius: 5px;
opacity: 0;
transition: opacity 0.3s ease;
pointer-events: none;
}
.toast.visible {
opacity: 1;
}