-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathedit_server.css
More file actions
64 lines (52 loc) · 933 Bytes
/
edit_server.css
File metadata and controls
64 lines (52 loc) · 933 Bytes
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
/* Basic reset and font settings */
body {
font-family: Arial, sans-serif;
background-color: #f8f9fa;
}
/* Container styling */
.container {
max-width: 800px;
margin: 0 auto;
}
/* Form container styling */
.bg-white {
background-color: #ffffff;
}
.p-4 {
padding: 1.5rem;
}
.rounded {
border-radius: 0.25rem;
}
.shadow-sm {
box-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.2);
}
/* Form element styling */
.form-label {
font-weight: 600;
color: #333;
}
.form-control {
border-radius: 0.25rem;
box-shadow: none;
}
.form-check-input {
margin-top: 0.3rem;
}
.btn {
border-radius: 0.25rem;
padding: 0.75rem 1.25rem;
font-size: 1rem;
}
.btn-primary {
background-color: #007bff;
border-color: #007bff;
}
.btn-secondary {
background-color: #6c757d;
border-color: #6c757d;
}
.btn-secondary:hover {
background-color: #5a6268;
border-color: #545b62;
}