-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
100 lines (77 loc) · 1.64 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
body {
font-size: 16px;
font-family: 'Source Sans Pro', sans-serif;
color: #1a1a1a;
background-color: #599e4b;
}
/** HEADER **/
#header-nav {
background-color: #c98715;
border-radius: 0;
border: 0;
}
#header-nav button {
margin-top: 22px;
}
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
background-color: #fce29e;
}
.navbar-collapse {
border-top: 0;
}
.navbar-brand, .navbar-nav li a {
line-height: 76px;
height: 76px;
padding-top: 0;
}
.navbar-brand h1 {
color: #7d1913;
font-family: 'Abril Fatface', cursive;
font-weight: bolder;
font-size: 1.8em;
}
.navbar-brand a:hover {
text-decoration: none;
text-shadow: 1px 1px 1px #fe9797;
}
#nav-list {
background-color: #e4af34;
}
#nav-list a {
/*text-align: center;*/
font-weight: bolder;
color: #282828;
font-size: 1.2em;
}
#nav-list a:hover {
color: #202020;
background-color: #fce29e;
}
.navbar-header button.navbar-toggle, .navbar-header .icon-bar {
border: 1px solid #7d1913;
}
/** END HEADER */
/** HOME PAGE **/
#main-content {
width: 92%;
margin-bottom: 30px;
}
#main-content h2 {
font-size: 2.9em;
font-weight: bold;
margin-top: 30px;
margin-bottom: 50px;
}
#main-content h3 {
font-size: 1.6em;
font-weight: bold;
margin-bottom: 1em;
}
#chicken-tile, #beef-tile, #sushi-tile {
width: 100%;
padding: 20px;
background-color: #99ed7b;
margin-bottom: 60px;
box-shadow: 0 0 80px #18580b;
}
/** END HOME PAGE **/