-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
116 lines (99 loc) · 1.52 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
* {
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 {
height: 100%;
width: 100%;
background-color: #555;
}
.grid-2 {
height: 100%;
width: 100%;
}
.grid-3 {
height: 100%;
width: 100%;
}
.column-navigation a {
display: block;
text-align: center;
padding: 10px;
color: white;
font-size: 15px;
}
.column-navigation a:hover {
background-color: #000;
}
.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: #9c9a9a;
font-size: 18px;
}
@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: 20%;
padding: 20px;
text-align: center;
font-size: 18px;
}
#cityimage {
height: 80%;
width: 80%;
display: block;
margin: auto;
}
}