This repository was archived by the owner on Jan 14, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 599
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (98 loc) · 1.35 KB
/
style.css
File metadata and controls
103 lines (98 loc) · 1.35 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
/* Screen for Mobile */
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
Header {
display: flex;
position: relative;
height: 200px;
width: 100%;
background-color: brown;
}
.logo {
width: 150px;
height: 100px;
position: absolute;
top: 20%;
left: 2%;
}
.logo > img {
width: 100px;
height: 90px;
}
#nav-mobile{
position: absolute;
top: 1%;
right: 1%;
color: white;
}
/* header > nav {
position: relative;
} */
/* nav > ul {
}
nav > ul > li {
} */
header > h4 {
position: absolute;
bottom: 2%;
right: 2%;
color: white;
}
.main{
display: flex;
flex-direction: column;
padding: 10px;
}
.introduction{
height: 200px;
}
.cakes{
padding: 10px;
background-color: pink;
}
.first{
display: flex;
justify-content: center;
padding-top: 20px;
}
.first >img{
border-radius: 10px;
width:90%;
height: 400px;
}
.second{
margin-top: 10px;
display: flex;
flex-direction: row;
justify-content: center;
gap: 10px;
}
.second>img{
width: 45%;
height: 300px;
border-radius: 10px;
}
.third{
margin-top: 10px;
display: flex;
flex-direction: row;
justify-content: center;
gap: 10px;
}
.third>img{
width: 45%;
height: 300px;
border-radius: 10px;
}
footer{
display: flex;
justify-content: center;
height: 50px;
width: 100%;
background-color: brown;
padding: 10px;
color: white;
}