This repository has been archived by the owner on Apr 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
144 lines (125 loc) · 2.65 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
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
.card:hover{
transform: scale(1.03); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
.row{
padding-top:20px ;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
}
.foot-contact{
padding-top:30px ;
}
/* product item details */
.product-container{
text-align: center;
}
.product-display{
height: 130px;
text-align: center;
}
.discount-top{
font-size: small;
text-align: center;
font-weight: bold;
}
.product-price{
text-align: center;
}
.item-name{
font-size: medium;
font-weight: 700;
}
.product-name{
text-align: center;
}
.buy-btn{
text-decoration: none;
font-size: 20px;
color: aliceblue;
}
.buy-item{
text-align: center;
background-color: black;
border-radius: 10px;
}
.buy-item:hover{
background-color:green;
border-radius: 10px;
}
.buy-btn:hover{
color:white;
}
#mainhead {
margin: 0%;
padding: 0%;
display: flex;
font-weight: bold;
font-size: 9vw;
margin-bottom: 20px;
align-items: center;
justify-content: center;
text-align: center;
/* -----------------------------------ANIMATION--------------------------- */
text-transform: uppercase;
background-image: linear-gradient(
-225deg,
#231557 0%,
#44107a 29%,
#ff1361 67%,
#fff800 100%
);
/* background-size: auto auto; */
background-clip: border-box;
background-size: 200% auto;
color: #fff;
background-clip: text;
text-fill-color: transparent;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: textclip 2s linear infinite;
/* display: inline-block; */
/* //font-size: 190px; */
}
@keyframes textclip {
to {
background-position: 200% center;
}
/* ----------------------------------------------ANIMATION-------------------------- */
}
.btn btn-dark{
border: 2px solid white !important;
}
[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
cursor: pointer;
border: 0.1vh solid white;
}
#side-spacing {
position: relative;
left: 10vh;
}
#side-spacing-2{
position: relative;
left: 7vh;
}
#side-spacing-2:hover{
background-color: white;
color: black;
}
#side-spacing:hover{
background-color: white;
color: black;
}
.nav-container{
position:sticky;
}
@media only screen and (max-width: 992px) {
#side-spacing-2:hover{
background-color: white;
color: black;
}
#side-spacing {
position: relative;
left: 7vh;
}
}