-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
130 lines (111 loc) · 1.99 KB
/
styles.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
* {
box-sizing: border-box;
}
body {
padding: 0;
margin: 0;
overflow: auto;
}
.grid-container {
display: grid;
grid-template-columns: 4vw 50vw 46vw;
grid-template-rows: 100vh;
}
/* COLUMNS */
.grid-1, .grid-2, .grid-3 {
height: 100%;
width: 100%;
}
.grid-1 {
background-color: #555;
}
.column-navigation a {
display: block;
text-align: center;
padding: 10px;
color: white;
font-size: 15px;
}
.column-navigation a:hover {
background-color: black;
}
.active {
background-color: #4caf50;
}
.column-menu {
height: 100%;
width: 100%;
padding: 1px;
background-color: #f1f1f1;
}
/* IMAGE */
#cityname {
margin: 0;
padding: 40px;
width: 100%;
height: 20%;
text-align: center;
font-size: 28px;
}
#cityimage {
width: 100%;
height: 60%;
border-radius: 10px;
}
#popover-text {
background-color: rgb(183, 183, 183);
}
@media screen and (max-width: 1024px){
#cityname {
height: 30%;
}
#cityimage {
height: 40%;
}
}
@media screen and (max-width: 768px){
.grid-container{
grid-template-columns: auto;
grid-template-rows: 5vh 50vh 45vh;
}
.column-navigation {
position: relative;
top: 50%;
transform: translateY(-50%);
text-align: center;
}
.column-navigation a {
display: inline;
}
#cityname {
height: 5%;
padding: 20px;
text-align: center;
font-size: 18px;
}
#cityimage {
display: block;
margin: auto;
height: 80%;
width: 80%;
}
}
@media screen and (max-width: 340px){
.grid-container{
grid-template-columns: auto;
grid-template-rows: 3vh 50vh 45vh;
}
.column-navigation a {
font-size: 10px;
padding: 2px;
}
#cityname {
height: 20%;
padding: 15px;
text-align: center;
font-size: 12px;
}
#cityimage{
height: 50%;
}
}