-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
118 lines (103 loc) · 1.74 KB
/
style.css
File metadata and controls
118 lines (103 loc) · 1.74 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
@import "tailwindcss";
/* Custom Classes */
/* Custom Fonts */
.montserrat-fam {
font-family: "Montserrat", sans-serif;
font-optical-sizing: auto;
font-style: normal;
}
.roboto-fam {
font-family: "Roboto", sans-serif;
font-optical-sizing: auto;
font-style: normal;
font-variation-settings: "wdth" 100;
}
/* Custom Colors */
.cust-blue {
background-color: #769cc7;
}
.cust-bl {
background-color: #111111;
}
.nav-bl {
background-color: #000000;
color: #ffffff;
}
.custom-bg-gradient {
background: linear-gradient(
to bottom,
#000000 0%,
#1a1a1a 15%,
#2e2e2e 30%,
#464646 50%,
#6a6a6a 70%,
#bfbfbf 85%,
#ffffff 100%
);
}
.wColor {
background-color: #f8f9fc;
}
.w-col {
background-color: #ffffff;
}
/* Extra Styling */
.star-glow {
text-shadow: 0 0 2px rgba(255, 223, 0, 0.8), 0 0 6px rgba(255, 223, 0, 0.6);
}
.main-img {
height: 680px;
}
.cont {
height: 600px;
width: 1500px;
}
.cont img {
height: 100%;
width: 100%;
object-fit: cover;
}
/* Animation for Flat Sale Lgo */
@layer utilities {
.animate-slow-blink {
animation: slow-blink 2s infinite;
}
@keyframes slow-blink {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0;
}
}
}
/* Animation for Sale Bar */
@layer utilities {
.animate-slide-text {
@apply absolute whitespace-nowrap;
animation: slideText 4s infinite;
}
@keyframes slideText {
0% {
transform: translateX(100%);
opacity: 0;
}
10% {
transform: translateX(0%);
opacity: 1;
}
70% {
transform: translateX(0%);
opacity: 1;
}
90% {
transform: translateX(-100%);
opacity: 0;
}
100% {
transform: translateX(-100%);
opacity: 0;
}
}
}