-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
126 lines (121 loc) · 2.77 KB
/
main.css
File metadata and controls
126 lines (121 loc) · 2.77 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
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
.nav {
background-color: floralwhite;
border-bottom: 3px dashed black;
}
.nav a {
color: #5a5a5a;
font-size: 11px;
font-weight: bold;
padding: 14px 10px;
text-transform: uppercase;
}
.nav li {
display: inline;
}
.opening {
background-color: floralwhite;
border-bottom: 1px solid black;
}
.opening h1{
color: black;
font-size: 60px;
font-family: 'Lobster', cursive;
font-weight: bold;
position: relative;
left: 135px;
bottom: 10px;
margin-right: 200px;
}
.jumbotronn .container {
position: relative;
top:0px;
}
.jumbotronn h1 {
font-size: 48px;
font-family: 'Shift', sans-serif;
font-weight: bold;
position: relative;
left: 215px;
bottom: 10px;
margin-right: 225px;
-webkit-animation-name: example1; /* Chrome, Safari, Opera */
-webkit-animation-duration: 16s; /* Chrome, Safari, Opera */
animation-name: example1;
animation-duration: 16s;
animation-iteration-count: infinite;
animation-direction: alternate;
}
@-webkit-keyframes example1 {
from {color: aliceblue;}
to {color: plum;}
}
.jumbotronn p {
font-size: 25px;
color: rgb(22,44,255);
font-family: 'Shift', monospace;
font-weight: bold;
position: relative;
left: 321px;
bottom: 18px;
margin-right: 400px;
}
.jumbotronn {
height: 500px;
position: relative;
background-size: 1600px 1000px;
background-image:url('http://dreamatico.com/data_images/cake/cake-8.jpg');
-webkit-animation-name: example; /* Chrome, Safari, Opera */
-webkit-animation-duration: 16s; /* Chrome, Safari, Opera */
animation-name: example;
animation-duration: 16s;
animation-iteration-count: infinite;
animation-direction: alternate;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes example {
to {background-image:url('http://dreamatico.com/data_images/cake/cake-8.jpg');}
from {background-image:url('http://www.finecooking.com/CMS/uploadedimages/Images/Cooking/Articles/Issues_111-120/051119082-01-chocolate-layer-cake-recipe_xlg.jpg');}
}
.recipe h2 {
color: blueviolet;
font-size: 70px;
position: relative;
left: 320px;
margin-right: 650px;
}
.recipe h3{
color: red;
font-size: 30px;
position: relative;
left: 320px;
margin-right: 650px;
}
.recipe li {
display: block;
position: relative;
left: 320px;
margin-right: 650px;
}
.neighborhood-guides{
background-color: #efefef;
border-bottom: 1px solid #dbdbdb;
}
.neighborhood-guides h2{
color: #393c3d;
font-size: 24px;
}
.neighborhood-guides p{
font-size: 15px;
margin-bottom: 13px;
}
.learn-more {
background-color: darkgray;
}
.learn-more h3 {
font-family: 'Shift', sans-serif;
font-size: 25px;
font-weight: bold;
}
.learn-more a {
color: #393c3f;
}