-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
88 lines (74 loc) · 1.15 KB
/
main.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
85
86
87
88
html,body,h1,h2,h3,h4,h5,h6 {
font-family: "Roboto", sans-serif
}
.screenshot {
max-width: 100%;
max-height: 100vh;
overflow: auto;
}
.badge {
width: 50%;
min-width: 150px;
}
.icon {
height: 50px;
margin-right: 10px;
}
.titleLbl {
margin-top: auto;
margin-bottom: auto;
white-space: nowrap;
}
html, body {
margin:0;
padding:0;
height:100%;
}
#container {
min-height:100%;
position:relative;
}
#body {
/* Height of the footer */
padding-bottom:30px;
}
#footer {
position:absolute;
bottom:0;
width:100%;
/* Height of the footer */
height:30px;
}
#footer p {
margin:0;
}
.accordion {
font-family: Arial, Helvetica, sans-serif;
background-color: #eee;
color: #444;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
transition: 0.4s;
}
.accordion:after {
content: '\002B';
color: #777;
font-weight: bold;
float: right;
margin-left: 5px;
}
.active:after {
content: "\2212";
}
.panel {
padding: 0 18px;
background-color: white;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}