-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (51 loc) · 875 Bytes
/
Copy pathstyle.css
File metadata and controls
51 lines (51 loc) · 875 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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #f9f9f9;
}
h1 {
color: #333;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
th, td {
border: 1px solid #ccc;
padding: 10px;
text-align: left;
}
th {
background-color: #f4f4f4;
}
form label {
display: block;
margin: 10px 0 5px;
}
form input, form button {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
}
a.btn, button {
background-color: #007BFF;
color: white;
padding: 10px 15px;
text-decoration: none;
border: none;
border-radius: 5px;
cursor: pointer;
}
a.btn-delete {
background-color: #DC3545;
}
a.btn:hover, button:hover {
background-color: #0056b3;
}
a.btn-delete:hover {
background-color: #c82333;
}