-
Notifications
You must be signed in to change notification settings - Fork 0
/
all.css
124 lines (106 loc) · 2.18 KB
/
all.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
body, html {
background-color: black;
color: white;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
overflow-x: hidden;
font-family: 'Roboto Mono', monospace;
}
.underline {
border-bottom: 2px solid white;
margin-bottom: 2rem;
}
/*---- Top stuff ----*/
.number {
display: inline-block;
background-color: white;
color: black;
border-radius: 1rem 1rem 1rem 1rem;
max-width: 17rem;
padding-left: 1rem; padding-right: 1rem;
margin: 2rem; /*<-- main margining*/
}
.number-txt {
display: inline-block;
font-size: 5rem;
margin-top: 2rem;
}
.location-header {
font-size: 3rem;
width: 95%;
padding-bottom: 1rem;
}
/*--- Location info (below static info) and beyond ---*/
/* location list AND map display container */
.location-logs-cont {
background-color: white;
border-radius: 2rem 2rem 2rem 2rem;
padding: 0.1rem;
margin-left: 1.5rem; margin-right: 1.5rem;
font-size: 1.2rem;
}
/* items only applied to the map container */
.map-cont {
max-width: 40rem;
margin-bottom: 1rem; /*<- margin between map and list */
}
#map {
height: 15rem;
border-radius: 1.5rem 1.5rem 1.5rem 1.5rem;
margin: 0.5rem;
}
/* items only applied to the list */
.list-cont {
max-width: 40rem;
display: inline-block;
}
/* location display row styles (font-size already set at 2rem in container ^^^) */
.location-row {
margin: 0.5rem;
padding: 0.6rem; /* T+B padding */
padding-right: 1.5rem; /* L+R padding */
border-radius: 1.4rem 1.4rem 1.4rem 1.4rem;
background-color: #000;
}
.location-row i{
padding: 0.2rem; /* Map pin extra padding */
padding-left: 0.6rem;
color: white;
}
.city-state-country {
color: blue;
}
.timestamp {
color: grey;
}
/* responsive design (font-size stuff)*/
@media only screen and (max-width: 789px) {
.location-header {
font-size: 2.5rem;
}
}
@media only screen and (max-width: 719px) {
.number-txt {
font-size: 3.2rem;
}
.location-header {
font-size: 1.2rem;
}
.location-logs-cont {
font-size: 1.2rem;
}
/* map formatting */
.map-cont {
max-width: 19.5rem;
}
/* list formatting */
.list-cont {
max-width: 23rem;
}
/* other formatting */
.underline {
margin-bottom: 1rem;
}
}