-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
103 lines (95 loc) · 1.76 KB
/
Copy pathindex.css
File metadata and controls
103 lines (95 loc) · 1.76 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
body{
font-family: 'Lato', sans-serif!important;
}
#header{
width: 100%;
height: 8vh;
background-color: white;
color: black;
display: flex;
justify-content: center;
align-items: center;
font-size: 65px;
margin-bottom: -1%;
}
#categories{
width: 100%;
height: 10vh;
background-color: white;
color: black;
display: flex;
justify-content: center;
align-items: center;
font-size:14px;
}
a:hover{
text-decoration: none;
font-weight: 900;
color:black;
}
#clothesBody{
height: 50%;
width: 100%;
display: inline-block;
text-align: center;
color: white;
background-color: #68111e;
font-size:60px;
}
#text{
position: relative;
top: 50%;
transform: translateY(-50%);
}
#cat::after {
content: '';
position: absolute;
width: 200px;
height: 1px;
background: white;
bottom: 30%;
left: 0;
right: 0;
margin:auto;
}
#cat2::after {
content: '';
position: absolute;
width: 80px;
height: 1px;
background: black;
bottom: 22%;
left: 0;
right: 0;
margin:auto;
}
#clothesShopDisplay{
margin-left: 10%;
margin-right: 10%;
display:grid;
grid-column-gap:150px;
grid-row-gap: 100px;
grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
}
#item{
width: 100%;
display: inline-block;
text-align: center;
}
#item p{
margin-top: -5%;
}
#text2{
margin-top: 10%;
}
#footer{
display: flex;
justify-content: center;
align-items: center;
height: 5%;
background-color: black;
color: white;
text-align: center;
font-size: 14px;
border: 0%;
}