-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
98 lines (82 loc) · 1.67 KB
/
Copy pathstyle.css
File metadata and controls
98 lines (82 loc) · 1.67 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
/* font-family: "Playfair Display", serif; */
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Playfair Display", serif;
}
.body{
background-color: #572323;
min-height: 100vh;
}
.nav-list{
display: flex;
justify-content: space-around;
align-items: center;
background-color: #ff9a9a;
padding: 20px 0;
}
.nav-list ul{
display: flex;
list-style: none;
}
.nav-list ul li{
margin: 0 20px;
}
.nav-list ul li a{
text-decoration: none;
color: #333;
font-size: 18px;
transition: color 0.3s ease;
}
.logo{
font-size: 24px;
font-weight: bold;
color: #333;
}
.login-btn{
padding: 10px 20px;
background-color: #333;
color: #fff;
border: none;
border-radius: 10px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.hero-section{
display: flex;
justify-content: center;
align-items: center;
height: 80vh;
background-color: #fff;
color: #ff9a9a;
text-align: center;
}
.hero-section h1{
font-size: 48px;
margin-bottom: 20px;
}
.hero-section p{
font-size: 24px;
margin-bottom: 30px;
}
.shop-now-btn{
padding: 10px 20px;
background-color: #ff9a9a;
color: #fff;
border: none;
border-radius: 10px;
cursor: pointer;
font-size: 18px;
transition: background-color 0.3s ease;
}
.shop-now-btn1{
padding: 10px 20px;
background-color: #ffcb9a;
color: #fff;
border: none;
border-radius: 10px;
cursor: pointer;
font-size: 18px;
transition: background-color 0.3s ease;
}