-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcitiesCSS.css
More file actions
72 lines (65 loc) · 1.03 KB
/
citiesCSS.css
File metadata and controls
72 lines (65 loc) · 1.03 KB
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
body {background-color: #292c2f;}
.column1 {
float: left;
width: 20%;
height:3500px;
}
.column2 {
float: left;
width: 60%;
height:100%;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
h1 {
display: inline;
position: relative;
font: 100px Helvetica, Sans-Serif;
letter-spacing: -5px;
color:#66FCF1 ;
}
.bg-map{
width:50%;
height:30%;
margin: 0 30px 0 0;
}
.post-container{
margin: 20px 20px 0 0;
}
.post-thumb img {
float: left;
}
.post-content {
margin-left: 10px;
}
.container-towns {
position: relative;
}
/* Bottom right text */
.text-block {
position: absolute;
bottom: 20px;
right: 20px;
background-color: black;
color: white;
padding-left: 20px;
padding-right: 20px;
}
@media screen and (max-width: 600px) {
.column1 {
width: 100%;
height: 0%;
}
.column2{
width:100%;
}
}
@media screen and (max-width: 600px) {
h1 {
font-size: 60px;
}
}