-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (52 loc) · 927 Bytes
/
style.css
File metadata and controls
62 lines (52 loc) · 927 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
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background: #f4f6f8;
color: #1f2933;
}
.container {
max-width: 760px;
margin: 2rem auto;
padding: 1.5rem;
}
form {
background: #ffffff;
border: 1px solid #d9e2ec;
border-radius: 12px;
box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
padding: 1.5rem;
}
legend {
font-size: 1.35rem;
font-weight: 700;
margin-bottom: 1rem;
}
label {
margin-top: 0.75rem;
font-weight: 600;
}
input,
select {
margin-top: 0.35rem;
}
button[type="submit"] {
margin-top: 1rem;
}
.alert {
border-radius: 8px;
margin-bottom: 1rem;
padding: 0.75rem 1rem;
}
.alert-success {
background: #d1fae5;
border: 1px solid #6ee7b7;
color: #065f46;
}
.alert-error {
background: #fee2e2;
border: 1px solid #fca5a5;
color: #991b1b;
}