-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmini.css
More file actions
66 lines (51 loc) · 1.08 KB
/
mini.css
File metadata and controls
66 lines (51 loc) · 1.08 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
body {
background-color: #001f3f;
font-family: Arial, sans-serif;
transform: scale(1.05);
transform-origin: top center;
color: white;
}
h1 {
text-align: center;
color: #ffffff;
text-shadow: 2px 2px 4px #000;
margin-bottom: 20px;
}
table {
border-collapse: separate;
border-spacing: 8px;
background-color: #002b5b;
border-radius: 10px;
padding: 10px;
}
th, td {
padding: 10px 15px;
border: 1px solid #005f99;
border-radius: 6px;
}
th {
background-color: #003366;
color: #ffffff;
}
input, select, textarea {
width: 95%;
padding: 5px;
border: 1px solid #0074D9;
border-radius: 4px;
}
input[type="submit"], input[type="reset"] {
background-color: #0074D9;
color: white;
border: none;
padding: 8px 16px;
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
}
input[type="submit"]:hover, input[type="reset"]:hover {
background-color: #3399ff;
}
#snameErr {
color: #ff4d4d;
font-size: 13px;
}