This repository has been archived by the owner on Jul 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
app.css
130 lines (112 loc) · 1.91 KB
/
app.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
.clearfix:after {
clear: both;
content: '.';
display: block;
height: 0;
visibility: hidden;
}
.clearfix {
*zoom: 1;
}
body, html {
background: #ddd;
margin: 0;
}
body, text {
font-family: Lato, Helvetica, Arial, sans-serif;
}
#container {
padding: 32px 34px;
}
h1 {
color: #333;
font-size: 30px;
font-weight: 900;
line-height: 30px;
margin: 0 0 14px;
}
#project-selector-parent select {
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
border-radius: 10px;
font-size: 18px;
font-family: Lato, Helvetica, Arial, sans-serif;
display: inline-block;
-webkit-appearance: none;
border: none;
margin: 0;
padding: 6px 40px 6px 10px;
cursor: pointer;
background: #fff;
outline: none;
}
.pseudo-arrow {
display: inline-block;
position: relative;
}
.pseudo-arrow:after {
content: " ";
height: 0;
width: 0;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-top: 9px solid #aaa;
position: absolute;
right: 12px;
top: -12px;
}
#source-links {
position: absolute;
top: 34px;
right: 40px;
text-align: right;
font-size: 14px;
}
#source-links a {
color: #999;
display: inline-block;
margin: 0 0 0 14px;
font-size: 14px;
line-height: 20px;
}
#source-links a:hover {
color: #444;
}
#last-fetched {
color: #888;
font-size: 14px;
line-height: 20px;
margin: 12px 0 12px;
}
#chart-container {
display: none;
}
.left-column {
float: left;
width: 50%;
}
.right-column {
float: right;
width: 50%;
}
.chart {
height: 260px;
margin: 0 5px 5px 0;
}
#no-chart-found {
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
display: none;
text-align: center;
padding: 40px 40px;
width: 580px;
font-size: 34px;
line-height: 40px;
margin: 140px auto 0;
background: #ffe5e5;
color: #500;
}
#no-chart-found code {
color: #d05407;
background-color: rgba(255, 255, 255, 0.4);
display: inline-block;
padding: 0 12px;
}