-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome1.css
107 lines (104 loc) · 1.91 KB
/
home1.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
*{
margin: 0;
box-sizing: border-box;
/* overflow-x: hidden; */
}
nav{
height: 100px;
width: 100vw;
display: flex;
background-color: black;
position: fixed;
}
#welcome_logo{
flex-basis: 85%;
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px;
border-right: 2px solid white;
}
#logo{
height: 80px;
width: 80px;
}
#cart{
font-size: 28px;
color: white;
}
#cartValue{
position: relative;
display: inline-block;
bottom: 24px;
font-size: 12px;
border: 2px solid black;
}
#welcome_user{
flex-basis: 15%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 5px;
}
#welcome1{
font-size: 20px;
color: white;
}
#welcome2{
font-size: 18px;
margin-left: 10px;
color: white;
text-transform: uppercase;
}
#card_container{
width: 100vw;
display: flex;
align-items: center;
justify-content: space-around;
flex-wrap: wrap;
gap: 50px;
/* margin-top: 30px; */
margin-bottom: 20px;
padding-top: 130px;
}
.card{
height: 600px;
width: 400px;
border: 1px solid rgba(85, 83, 83, 0.533);
display: flex;
align-items: center;
justify-content: space-between;
flex-direction: column;
padding: 20px;
border-radius: 10px;
box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}
main img{
height: 300px;
width: 300px;
}
main p{
text-align: justify;
}
main button{
height: 30px;
width: 200px;
border-radius: 10px;
background-color: rgb(167, 15, 15);
color: white;
border: none;
}
#cart_items{
/* height: 250px; */
border: 2px solid black;
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px;
flex-wrap: wrap;
}
#cartImage{
height: 100px;
width: 100px;
}