forked from leahcornelius/avrio-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (58 loc) · 1.06 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
body {
min-height: 100vh;
background-color: #f5f6f7;
color: #53565c;
}
h1.title {
color: #53565c;
}
.column.curve-box {
padding-top: 30px;
padding-bottom: 30px;
background-color: #fff;
}
.curve-box-inner {
border-left: 1px solid #ccc;
padding: 10px;
padding-left: 40px;
padding-right: 40px;
text-align: center;
}
.curve-box-inner p {
color: #96999e;
border-bottom: 1px dotted #96999e;
display: inline;
padding-bottom: 2px;
}
.column.curve-box:first-child .curve-box-inner {
border-left: 0px;
}
.column.curve-box:first-child {
border-top-left-radius: 8px;
border-bottom-left-radius: 8px;
}
.column.curve-box:last-child {
border-top-right-radius: 8px;
border-bottom-right-radius: 8px;
}
.columns.pad-right {
margin-right: 30px;
}
.table {
width: 100%;
}
table.table th {
color: #96999e;
}
a {
color: #578fff;
text-decoration: none;
}
td a:hover {
opacity: 1;
color: #578fff;
text-decoration: none;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}