-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
156 lines (128 loc) · 2.21 KB
/
style.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
body {
margin: 0;
background-color: #ddd;
}
nav li {
display: inline-block;
}
nav {
background-color: #333333;
}
nav li a {
line-height: 50px;
text-decoration: none;
color: #999;
font-family: sans-serif;
font-size: 11px;
text-transform: uppercase;
font-weight: bold;
padding: 0 18px;
}
nav {
background-color: #333333;
position: fixed;
width: 100%;
top: 0;
}
/******************* stops navbar sticking on print ********************************/
@media print {
nav {
position: static;
}
}
nav ul {
margin: 0;
text-align: center;
padding: 0;
}
.hero-image {
padding: 200px 0;
width: 100%;
max-width: 500px;
display: block;
margin: 0 auto;
}
.hero {
background: url(http://www.elevationacademy.co/wp-content/uploads/2016/02/Tel-Aviv.jpg) no-repeat center fixed;
background-size: cover;
height: 700px;
}
h1 {
margin: 0;
font-family: 'Open Sans';
text-align: center;
font-weight: bold;
padding: 60px 25px 25px 25px;
}
.food h3 {
text-align: center;
font-weight: bold;
font-family: 'Open Sans';
margin-bottom: 5px;
font-size: 18px;
}
.night-life h3 {
text-align: center;
font-weight: bold;
font-family: 'Open Sans';
padding-bottom: 5px;
padding-top: 23px;
font-size: 18px;
}
.night-life .column-30 h3 {
font-family: 'Merriweather';
}
section {
background-color: #ddd;
/* margin: 10px 0;*/
}
.column {
float: left;
width: 33.33%;
}
.column-70 {
float: left;
width: 70%;
height: 500px;
}
.column-30 {
float: left;
width: 30%;
height: 500px;
}
@media (max-width: 768px) {
.column,
.column-70,
.column-30 {
width: 100%;
height: auto;
}
}
/*section:before,*/
.row:before {
display: table;
content: "";
}
.row:after {
display: table;
content: "";
clear: both;
}
.food img {
width: 100%;
height: 250px;
}
.night-life img {
width: 100%;
}
.food .column-inner {
padding: 20px;
}
.night-life .column-inner {
background-color: white;
margin: 20px;
}
.night-life .column-inner .stuff-inner {
margin: 10px;
padding-bottom: 20px;
}