-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
74 lines (60 loc) · 1.1 KB
/
styles.css
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
body {
font-family: Arial, sans-serif;
padding: 20px;
background-color: #f4f4f9;
color: #333;
}
h1 {
font-size: 1.5em;
margin-bottom: 10px;
color: #2c3e50;
}
form {
display: flex;
flex-direction: column;
margin-bottom: 20px;
}
input {
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}
.add-button{
margin-top: 20px;
}
button {
padding: 10px 15px;
background-color: #008636;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #005d25;
}
#problemTable {
width: 100%;
border-collapse: collapse;
}
#problemTable th, #problemTable td {
border: 1px solid #ddd;
padding: 8px;
}
#problemTable th {
background-color: #f2f2f2;
text-align: left;
}
.edit-button {
background-color: #01a0b5;
}
.edit-button:hover {
background-color: #01829b;
}
.delete-button {
background-color: #e74c3c;
}
.delete-button:hover {
background-color: #c0392b;
}