-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
151 lines (126 loc) · 2.55 KB
/
index.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
/* Hero Section */
.hero-section {
height: 600px;
background-image: url("https://img.mytheresa.com/media/static/raw/cms/l/WW_Moncler_Bigs/Moncler_MayaJacket_Act_Big_desktop_1_x2_20220928145617.jpg?imwidth=1180&imdensity=1");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
margin: 40px auto;
}
/* New Arrival Section */
.new-arrival-section {
padding: 40px 100px;
cursor: pointer;
border-top: 1px solid #dfdfdf;
border-bottom: 1px solid #dfdfdf;
text-align: center;
background-color: #f6f6f6;
}
.new-arrival-section > h4 {
font-weight: 400;
font-size: 18px;
margin-bottom: 10px;
cursor: pointer;
}
.new-arrival-section > h1 {
font-weight: 400;
font-size: 34px;
margin-bottom: 0.67em;
cursor: pointer;
}
.new-arrival-section > h5 {
font-weight: 400;
font-size: 18px;
margin-bottom: 26px;
cursor: pointer;
}
.new-arrival-section > a {
color: #fff;
background-color: #000;
border-color: #000;
padding: 7px 20px;
font-size: 14px;
}
/* Bridal Section */
.bridal-section {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(2, auto);
gap: 0 25px;
padding: 40px 0;
text-align: center;
border-bottom: 1px solid #dfdfdf;
}
.bridal-section > div {
padding-bottom: 30px;
}
.bridal-section img {
width: 100%;
}
.bridal-section h4 {
font-size: 18px;
font-weight: 400;
margin-bottom: 12px;
}
.bridal-section h1 {
font-size: 34px;
font-weight: 400;
width: 80%;
margin: auto;
margin-bottom: 25px;
}
.bridal-section img {
margin-bottom: 40px;
}
.bridal-section a {
color: #fff;
background-color: #000;
border-color: #000;
padding: 7px 20px;
font-size: 14px;
}
.bridal-section > div:nth-child(1) {
grid-area: 1/1 / span 2/ 1;
}
.bridal-section > div:nth-child(1) img {
height: 900px;
}
.bridal-section > div:nth-child(2) {
border-bottom: 1px solid #dfdfdf;
}
/* Product section */
.product-section {
text-align: center;
padding: 40px 0;
}
.product-section h4 {
text-align: center;
font-size: 18px;
font-weight: 400;
margin-bottom: 12px;
}
.product-section h1 {
font-size: 34px;
font-weight: 400;
width: 40%;
margin: auto;
margin-bottom: 25px;
}
.product-section > div {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(1, auto);
gap: 0 25px;
margin-bottom: 25px;
cursor: pointer;
}
.product-section > div > div > img {
width: 100%;
}
.product-section a {
color: #fff;
background-color: #000;
border-color: #000;
padding: 7px 20px;
font-size: 14px;
}