-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
62 lines (51 loc) · 792 Bytes
/
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
body {
font-family: Arial, sans-serif;
width: 300px;
padding: 10px;
}
h1 {
font-size: 16px;
}
label {
display: block;
margin-top: 10px;
}
input {
width: 100%;
padding: 5px;
margin-top: 5px;
}
button {
display: block;
width: 100%;
padding: 10px;
background-color: #0078d7;
color: white;
border: none;
margin-top: 10px;
cursor: pointer;
}
button:hover {
background-color: #005a9e;
}
#results {
margin-top: 20px;
}
#resultsTable {
width: 100%;
border-collapse: collapse;
}
#resultsTable th, #resultsTable td {
border: 1px solid #ddd;
padding: 8px;
}
#resultsTable th {
background-color: #f2f2f2;
text-align: left;
}
#resultsTable tr:nth-child(even) {
background-color: #f9f9f9;
}
#resultsTable tr:hover {
background-color: #ddd;
}