-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
104 lines (83 loc) · 1.21 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
html {
background:navy;
}
div.bar {
height:1.3em;
font-size:0.9em;
color:black;
margin:auto;
text-align:center;
white-space:nowrap;
padding-bottom:0.3em;
}
td {
width:20%;
}
hr {
background: black;
height: 1.5px;
box-shadow: 3px 3px;
}
#plabel {
opacity: 0;
border: 2px solid #DFDFDF;
top: 0px;
position: relative;
margin-top: 300px;
background:#f8f8f8;
}
/* hovering population textbox */
div.bar:hover #plabel {
opacity: 0.75;
}
div.box {
border:3px solid black;
background:white;
overflow:hidden;
box-shadow: 4px 4px gray;
margin-bottom:5px;
}
body {
margin-left:1%;
margin-right:1%;
font-family:verdana;
padding:1em;
background:#eee;
}
div.y {
background:#b11;
}
div.a {
background:purple;
}
div.m {
background:blue;
}
div.o {
background:teal;
}
/* mobile support */
@media screen and (max-width: 1024px) {
body {
font-size: 200%;
}
button {
font-size: 1.2em;
}
input {
height:1.5em;
font-size:1em;
width:50%;
}
div.bar {
font-size:75%;
}
}
/* huge screens */
@media screen and (min-width: 1400px) {
body {
width:1344px;
margin:auto;
margin-top:9px;
}
}