forked from paulgasbarra/burger_fun
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
76 lines (66 loc) · 1.37 KB
/
styles.css
File metadata and controls
76 lines (66 loc) · 1.37 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
h1{
color: red;
border: solid black 2px;
border-radius: 5px;
background: yellow;
font-family: 'Bangers';
font-size: 50px;
text-shadow: -1px -1px 0 #000,
2px -1px 1px #000,
-1px 1px 0 #000,
1px 1px 0 #000;
text-align: center;
margin: 0px;
}
.title{
margin: 0 auto;
width: 400px;
border: red solid 5px;
background: red;
border-radius: 3px;
box-shadow: 0 0 0 2px black;
letter-spacing: 0.2em;
margin: 20px;
}
/*ingredients below*/
.beefPatty{
width: 300px;
height: 75px;
background: sienna;
border-radius: 30px;
border: 1px black solid;
}
.cheese{
width: 300px;
height: 15px;
background: gold;
border-radius: 5px;
}
.topBun{
width: 300px;
height: 65px;
background: moccasin;
background: linear-gradient(to bottom, moccasin 20%, #AA8647 100%);
border-radius: 50px 50px 5px 5px;
}
.bottomBun{
width: 300px;
height: 65px;
background: moccasin;
background: linear-gradient(to top, moccasin 20%, #AA8647 100%);
border-radius: 5px 5px 50px 50px;
}
.bacon{
width:300px;
height: 30px;
background: url(http://hitwallpaper.com/wp-content/uploads/2013/07/bacon.jpg);
background-size:300px 200px;
border-radius: 12px;
}
.kittens{
width:300px;
height: 75px;
background: url(https://www.onlinefabricstore.net/images/product-images/standard/31772_1.jpg);
background-size:300px 200px;
border-radius: 12px;
}