forked from dabbler0/bc18-tinyview
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
85 lines (70 loc) · 1.19 KB
/
styles.css
File metadata and controls
85 lines (70 loc) · 1.19 KB
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
/* font includes */
@import url('https://fonts.googleapis.com/css?family=Inconsolata|Roboto');
h1 {
font-family: Inconsolata;
font-size: 2.5em;
text-align: center;
}
h2 {
font-family: Roboto;
font-size: 2em;
text-align: center;
}
/* this also takes care of canvas centering, how convenient */
div {
font-family: Roboto;
font-size: 1em;
text-align: center;
}
button {
font-family: Roboto;
font-size: 1em;
}
input {
font-family: Inconsolata;
font-size: 1em;
}
.viewer {
margin-left: auto;
margin-right: auto;
width: 1350px;
}
.maps {
display: inline-block;
float: right;
}
.graphs {
float: right;
}
.info {
display: inline-block;
font-weight: bold;
width: 300px;
float: left;
padding: 10px;
text-align: left;
}
.info table {
background: #333;
border: 1px solid #333;
border-radius: 5px;
color: #FFF;
width: 100%;
border-spacing: 0px;
}
.info table tr {
height: 30px;
}
.property {
text-align: left;
}
.infoRed {
background: #e41a1c;
width: 50px;
}
.infoBlue {
background: #377eb8;
width: 50px;
}
/* make table a bit more readable */
th, td { padding: 0px 20px; }