-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml.css
More file actions
110 lines (102 loc) · 1.73 KB
/
html.css
File metadata and controls
110 lines (102 loc) · 1.73 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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300&family=Montserrat:ital,wght@1,300&family=Roboto:ital,wght@0,400;1,300&display=swap');
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
font-family:sans-serif;
font-weight: 200px;
font-size: 1.3rem;
}
header{
height: 100px;
display: flex;
justify-content:space-around;
padding: 20px;
border-bottom: 1px solid rgb(241,241,241);
}
header h2{
color: #6897c8;
}
.hero{
background-color: rgba(253,253,230);
width: 92%;
display: flex;
margin: auto;
}
.hero img{
margin-right: 24px;
}
.hero div{
padding: 30px;
font-size: 5rem;
color: gray;
}
nav{
height:80px;
width: 400px;
}
ul li{
padding: 10px;
}
nav ul {
display: flex;
justify-content: space-between;
list-style: none;
}
ul li:hover{
background-color: #dc757d;
}
ul li a{
color: #dc757d;
}
a{
text-decoration: none;
color:inherit;
}
.drink{
background-color: rgba(254,254,254);
height: 400px;
width: 100%;
margin-top: 80px;
border-top: 1px solid rgba(241,241,241);
border-bottom: 1px solid rgba(241,241,241);
}
.boxes{
height: 380px;
width: 95%px;
margin: auto;
padding: 20px;
display: flex;
}
.box{
height: 304px;
min-width: 400px;
margin: 20px;
border: 5px solid rgb(253,237,237);
border-radius: 10px;
}
.box img {
width: 100%;
}
.title{
text-align: center;
}
footer{
background-color: #697c69;
height: 160px;
padding: 40px;
display: flex;
justify-content: space-around;
margin-top: 26px;
}
footer a{
color: white;
}
.sub-footer{
background-color: lightblue;
text-align: center;
padding: 20px;
height: 50px;
}