-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
53 lines (53 loc) · 1.2 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
table {
border-collapse: separate;
border-spacing: 0;
font: normal 14px Menlo, Consolas, "Andale Mono", "Lucida Console", monospace, sans-serif;
width: 100%;
}
td:first-child {
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
border-left: solid 1px #DDEEEE;
color: red;
font-family: "American Typewriter";
}
td:last-child {
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
border-right: solid 1px #DDEEEE;
}
thead th:first-child, tr:nth-child(even) td:first-child{
border-top-left-radius: 15px;
border-bottom-left-radius: 15px;
}
thead th:last-child, tr:nth-child(even) td:last-child {
border-top-right-radius: 15px;
border-bottom-right-radius: 15px;
}
thead th {
background-color: #DDEFEF;
border: solid 1px #DDEEEE;
color: #336B6B;
padding: 10px;
text-align: center;
text-shadow: 1px 1px 1px #fff;
}
tbody td {
border-bottom: outset 1px #DDEEEE;
color: whitesmoke;
padding: 10px;
text-align: center;
}
tbody tr:hover {
background-color: #f5b23c;
cursor: pointer;
}
thead tr:hover{
cursor: s-resize;
}
input {
color: #337ab7;
}
button {
background-color: transparent;
}