forked from actigence/json-to-table-chrome-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
84 lines (71 loc) · 1.61 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
72
73
74
75
76
77
78
79
80
81
82
83
84
body {
font-family : 'Roboto', sans-serif;
font-size : 0.9em;
}
td.details-control {
background : url('chrome-extension://__MSG_@@extension_id__/images/details_open.png') no-repeat center center;
cursor : pointer;
}
tr.shown td.details-control {
background : url('chrome-extension://__MSG_@@extension_id__/images/details_close.png') no-repeat center center;
}
.acs-content-div {
}
.acs-table-div {
padding : 20px;
}
.acs-logo-bg {
background-color: #080957;
height : 60px;
margin : -10px -10px 20px;
}
.acs-logo {
background : url('chrome-extension://__MSG_@@extension_id__/images/logo_flat.png') no-repeat left;
height: 60px;
}
.green {
background : url('chrome-extension://__MSG_@@extension_id__/images/green.png') no-repeat left;
height: 25px;
width: 25px;
}
.red {
background : url('chrome-extension://__MSG_@@extension_id__/images/red.png') no-repeat left;
height: 25px;
width: 25px;
}
.acs-credits {
color : #585858;
font-size : 0.8em;
}
td {
font-size : 0.9em;
}
th {
font-size: 1.0em;
text-align: left;
}
pre {
font-size: 1.2em;
}
/* Style the button that is used to open and close the collapsible content */
.collapsible {
background-color: #080957;
color: white;
cursor: pointer;
padding: 8px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
}
.active, .collapsible:hover {
background-color: #7477CD;
}
.content {
padding: 0 18px;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
background-color: #f1f1f1;
}