forked from hhhrrrttt222111/Trapple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cities.css
70 lines (56 loc) · 962 Bytes
/
cities.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
* {
box-sizing: border-box;
}
body {
background: rgb(193,209,24);
background: linear-gradient(270deg, rgba(193,209,24,1) 40%, rgba(250,255,0,1) 63%);
}
p {
font-size: 23px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
text-align: center;
padding: 10px;
color: black;
text-decoration: none;
}
.tcimg {
position: relative;
height: 200px;
width: 200px;
left: 40px;
top: 30px;
}
body {
margin: 0;
}
.header {
text-align: center;
padding: 32px;
color: brown;
}
.row {
display: flex;
flex-wrap: wrap;
padding: 0 4px;
}
.column {
flex: 25%;
max-width: 25%;
padding: 0 4px;
}
.column img {
margin-top: 8px;
vertical-align: middle;
}
@media (max-width: 800px) {
.column {
flex: 50%;
max-width: 50%;
}
}
@media (max-width: 600px) {
.column {
flex: 100%;
max-width: 100%;
}
}