-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
82 lines (71 loc) · 1.31 KB
/
style.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
75
76
77
78
79
80
81
82
body {
font-family: 'Times New Roman', Times, serif;
margin: 0;
padding: 20px;
background-color: aquamarine;
}
h1 {
text-align: center;
color: #002765;
padding: auto;
align-items: center;
}
form,
.table-container {
margin: 0 auto;
max-width: 700px;
background-color: bisque;
padding: 50px;
border-radius: 4px;
}
form label,
form input {
display: block;
margin-bottom: 10px;
}
form input[type="text"],
form input[type="number"] {
width: 100%;
padding: 5px;
border: 1px solid rgb(71, 62, 197);
border-radius: 4px;
}
form button[type="submit"],
form button[type="button"] {
display: block;
width: 100%;
padding: 8px;
margin-top: 10px;
border: none;
border-radius: 4px;
cursor: pointer;
}
form button[type="submit"] {
background-color: rgb(32, 172, 113);
color: #fff;
}
form button[type="button"] {
background-color: #ff6347;
color: #fff;
}
#resultTable {
width: 100%;
border-collapse: collapse;
}
#resultTable th,
#resultTable td {
padding: 10px;
border: 1px solid #ccc;
text-align: center;
}
.edit-button {
background-color: maroon;
color: #fff;
padding: 5px;
border: none;
border-radius: 4px;
cursor: pointer;
}
.edit-button:hover {
background-color: #8d401c;
}