-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
55 lines (44 loc) · 911 Bytes
/
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
body {
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Liberation Sans, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
font-size: 13px;
}
textarea {
width: 100%;
min-height: 100px;
}
#texty {
margin-top: 5px;
margin-bottom: 5px;
width: 80%;
}
form {
display: block;
}
table {
border-collapse: collapse;
width: 100%;
background-color: #fff;
border: 1px solid #ddd;
}
th, td {
padding: 10px;
text-align: left;
}
thead {
background-color: #f2f2f2;
}
th {
background-color: #ddd;
border-bottom: 2px solid #ccc;
color: #333;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
tr:nth-child(odd) {
background-color: #fff;
}
/* Hover effect for rows */
tr:hover {
background-color: #e0e0e0;
}