-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
81 lines (70 loc) · 1.51 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
body {
/*color: blue;*/
font-family: Arial, Helvetica;
background: url("burgers.jpeg") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
header {
background: rgba(234, 173, 91, 0.8);
color: white;
text-align: center;
margin: 20px;
padding: 20px 20px 40px; /*works like a clock starting at noon*/
}
header p {
color: #8A2D0F;
font-weight: bold;
text-transform: lowercase;
}
#page-title {
font-size: 3.2em;
}
.restaurant-group {
border: 1px solid rgb(234, 173, 91);
padding: 20px;
margin: 20px;
background-color: rgba(253, 236, 211, 0.9)
}
.restaurant-group h2 {
color: blue;
letter-spacing: 4px;
text-transform: uppercase;
color: #8A2D0F;
}
.restaurant-group h3 {
font-weight: normal;
font-style: italic;
color: #A2877E;
}
.restaurant-group a {
text-decoration: none;
border: 1px solid #8A2D0F;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
border-radius: 10px;
background-color: #A2877E;
color: white;
padding: 10px;
}
.restaurant-group a:hover {
background-color: white;
color: #A2877E;
}
p {
font-size: 1.2em;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-weight: 100; /*100-900 or bold or normal*/
color: #333; /*darker grey*/
line-height: 1.7;
}
/*Float the image to the right, but stop floating at the paragraph*/
.restaurant-group img {
float: right;
}
.restaurant-group p {
clear: both;
}