-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (44 loc) · 781 Bytes
/
style.css
File metadata and controls
54 lines (44 loc) · 781 Bytes
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
.centered{
margin:auto;
}
.btn-default{
padding: 2px 2px;
}
#fillItIn{
border-style: solid;
border-collapse: collapse;
}
#resultLimit{
border-radius: 5px;
background-color: rgb(248, 248, 248);
border-width: 1px;
border-style: solid;
border-color: rgb(166, 166, 166);
border-image: initial;
}
table {
border-collapse:separate;
border:solid black 1px;
border-radius:6px;
-moz-border-radius:6px;
-webkit-border-radius: 5px;
border-radius: 5px;
}
td, th {
border:solid black 1px;
}
th {
border-top: none;
padding:10px;
}
tr:hover{
background-color: black;
color:white;
transition: 200ms;
padding:30px;
}
th:hover{
background-color:white;
color:black;
transition: 400ms;
}