-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
91 lines (76 loc) · 1.23 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
* {
box-sizing: border-box;
}
body {
margin: 0;
background-color: #ddd;
}
section {
background-color: #ddd;
}
h1 {
margin: 0;
font-family: 'Roboto';
text-align: center;
font-weight: bold;
padding: 25px;
}
.food {
width: auto;
}
.row {
overflow: auto;
}
.column {
float: left;
padding: 0 4px;
width: 33.3%;
}
.column-inner {
padding: 20px;
}
.food img {
width: 100%;
padding: 20px;
}
h3 {
text-align: center;
font-weight: bold;
font-family: 'Roboto';
margin-bottom: 5px;
font-size: 18px;
}
nav li {
display: inline-block;
}
nav {
background-color: #333333;
position: fixed;
width: 100%;
top: 0;
}
nav ul {
text-align: center;
margin: 0;
}
nav li a {
line-height: 50px;
text-decoration: none;
color: #999;
font-size: 11px;
text-transform: uppercase;
font-weight: bold;
padding: 0 18px;
font-family: 'Roboto', sans-serif;
}
.hero {
background: url(http://www.elevationacademy.co/wp-content/uploads/2016/02/Tel-Aviv.jpg) no-repeat center fixed;
background-size: cover;
height: 700px;
}
.hero-image {
width: 100%;
max-width: 500px;
display: block;
margin: 100 auto 0 auto;
}