-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
114 lines (97 loc) · 1.69 KB
/
style.css
File metadata and controls
114 lines (97 loc) · 1.69 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/* style.css */
body {
margin: 0;
padding: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #0066cc;
color: white;
padding: 1rem 2rem;
text-align: center;
}
header h1 {
margin: 0;
font-size: 1.8rem;
}
nav {
background-color: #004999;
padding: 0.5rem 2rem;
display: flex;
gap: 1rem;
}
nav a {
color: white;
text-decoration: none;
font-weight: bold;
}
nav a:hover {
text-decoration: underline;
}
.container {
max-width: 960px;
margin: 2rem auto;
background-color: white;
padding: 2rem;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
border-radius: 6px;
}
h2 {
color: #0066cc;
margin-top: 0;
}
form label {
display: block;
margin-top: 1rem;
font-weight: bold;
}
form input[type="text"],
form select,
form textarea {
width: 100%;
padding: 0.6rem;
margin-top: 0.3rem;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 1rem;
box-sizing: border-box;
}
form textarea {
min-height: 150px;
}
form button {
margin-top: 1.5rem;
padding: 0.7rem 1.5rem;
background-color: #0066cc;
color: white;
border: none;
border-radius: 4px;
font-size: 1rem;
cursor: pointer;
}
form button:hover {
background-color: #005bb5;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 1rem;
}
table th,
table td {
padding: 0.8rem;
border-bottom: 1px solid #ddd;
text-align: left;
}
.search-box {
margin-bottom: 1.5rem;
}
footer {
text-align: center;
color: #777;
font-size: 0.9rem;
margin-top: 3rem;
padding-bottom: 1rem;
}