-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoffeeshop.css
86 lines (85 loc) · 1.21 KB
/
coffeeshop.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
body{
margin: 0px;
}
.coffee-header{
position: fixed;
left: 0px;
right: 0px;
height: 100px;
width: 100%;
background-color: #0a2d42;
z-index: 100;
}
.div-logo{
height: 100px;
text-align: center;
margin: 10px;
float: left;
}
.logo-text{
display: block;
font-family: Helvetica Neue;
font-weight: bold;
color: white;
}
.coffee-nav{
float: right;
height: 100%
}
.coffee-nav a{
color: white;
font-size: 15px;
font-weight: 700;
font-family: "Helvetica Neue";
padding-right: 20px;
padding-top: 12%;
display: inline-block;
}
.site-content{
position: absolute;
top: 78px;
width: 100%;
}
.image-content{
background-image: url("background-image.jpg");
height: 700px;
width: 100%;
text-align: center;
}
.quote{
color: white;
font-family: "Helvetica Neue";
position: relative;
top: 10%;
}
.card-list{
width: 100%;
}
#product{
text-align: center;
}
.card{
width: 22%;
padding: 1.5%;
height: 300px;
float: left;
text-align: center;
}
.cards img{
height: 100px;
width: 100px;
}
.order-section{
width: 100%;
}
#order{
text-align: center;
}
.form{
width: 200px;
margin: 0 auto;
}
.form input{
padding: 10px;
margin: 10px;
}