-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
104 lines (82 loc) · 1.78 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
html {
display: table;
margin: auto;
background-color: rgb(255, 232, 232);
}
body {
width: 1050px;
display: table-cell;
vertical-align: middle;
background-color: #ffbd67;
box-shadow:0 2px 1px rgba(0,0,0,0.09),0 4px 2px rgba(0,0,0,0.09),0 8px 4px rgba(0,0,0,0.09),0 16px 8px rgba(0,0,0,0.09),0 32px 16px rgba(0,0,0,0.09);
}
div {
text-align: center;
align-content: center;
}
.no-underline {
text-decoration: none;
}
.header{
font-family: 'Vegan Style Personal Use', sans-serif;
font-size: 52px;
text-align: center;
color: rgb(239, 244, 255);
margin-bottom: 20px;
margin-top: 0px;
transition: 0.3s;
}
.header:hover {
transform: scale(1.05);
}
.rectxt {
font-size: 28px;
color: rgb(48, 46, 46);
text-align: center;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-weight: bold;
transition: 0.3s;
}
.rectxt:hover {
transform: scale(1.05);
}
#headimg {
width: 15%;
}
.recimg {
width: 260px;
height: auto;
border: 2px solid white;
box-shadow:0 1px 2px rgba(0,0,0,0.07),0 2px 4px rgba(0,0,0,0.07),0 4px 8px rgba(0,0,0,0.07),0 8px 16px rgba(0,0,0,0.07),0 16px 32px rgba(0,0,0,0.07),0 32px 64px rgba(0,0,0,0.07);
transition: 0.3s;
}
.recimg:hover {
transform: scale(1.05);
}
.scallop-down{
height:100px;
width:100%;
background: -webkit-gradient(radial, 50% 0, 10, 50% 0, 40, from(#ffbd67), color-stop(0.49, #ffbd67), color-stop(0.51, #f0f8ff), to(#f0f8ff));
-webkit-background-size: 49px 100%;
}
#recipes {
width: 100%;
text-align: center;
background-color: #f0f8ff;
}
#left {
float:left;
width: 33%;
height: auto;
}
#center {
display: inline-block;
margin:0 auto;
width: 33%;
height: auto;
}
#right {
float:right;
width: 33%;
height: auto;
}