-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
119 lines (97 loc) · 1.88 KB
/
style.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
.main-body{
background-image: url("img/breadcumber2.png");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.logo{
background-image: url("resource/logo.svg");
height: 100px;
background-size: contain;
background-position: center;
background-repeat: no-repeat;
}
@font-face {
font-family: "Quicksand";
src: url("font/Quicksand-Medium.ttf");
}
@font-face {
font-family: "Honey";
src: url("font/HoneyScript-Light.ttf");
}
*{
font-family: "Quicksand";
font-size: 14px;
}
.title01{
font-family: "Honey";
font-size: 30px;
letter-spacing: 3px;
}
.background{
background-image: url("resource/Tech Heaven.png");
background-size: contain;
background-position: center;
background-repeat: no-repeat;
}
.title02{
font-size: 25px;
font-weight: bold;
}
.cart-icon{
background-image: url("resource/cartico.svg");
background-repeat: no-repeat;
background-size: contain;
}
.poster-img-1{
height: 500px;
background-repeat: no-repeat;
}
.poster-caption{
margin-bottom: 200px;
}
.poster-caption-1{
margin-bottom: 70px;
margin-right: 280px;
}
.poster-title{
color: black;
font-size: 50px;
font-weight: bold;
}
.poster-txt{
font-size: 20px;
color: gray;
}
.signout:hover{
cursor: pointer;
}
.mainImg {
width: 100%;
height: auto;
}
.img-thumbnail {
cursor: pointer;
}
.product-qty {
position: relative;
width: fit-content;
padding-right: 40px; /* Adjust this if needed */
}
.qty-buttons {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.qty-inc, .qty-dec {
width: 20px;
height: 20px;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}
.qty-inc:hover, .qty-dec:hover {
background-color: #f0f0f0;
}