-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
157 lines (141 loc) · 2.71 KB
/
styles.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
145
146
147
148
149
150
151
152
153
154
155
156
157
/* Reset some default styles */
html, body {
margin: 0;
padding: 0;
}
/* Apply styles to the header and navigation */
header {
text-align: center;
padding: 100px;
background: rgba(0, 0, 0, 0.5);
color: white;
}
nav {
background: rgba(0, 0, 0, 0.7);
text-align: center;
}
nav ul {
list-style: none;
padding: 0;
}
nav li {
display: inline;
margin: 20px;
}
nav a {
text-decoration: none;
color: white;
font-weight: bold;
}
/* Apply styles to the main content sections */
main {
padding: 50px;
background: rgba(0, 0, 0, 0.7);
color: white;
}
/* Apply styles to the featured products and about us sections */
.featured-products, .about-us {
margin: 20px;
padding: 20px;
border: 2px solid #ff6600;
border-radius: 10px;
background: rgba(255, 255, 255, 0.1);
}
/* Apply styles to the footer */
footer {
text-align: center;
background: rgba(0, 0, 0, 0.7);
color: white;
padding: 10px;
}
/* Apply styles to the background video */
#bgVideo {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
}
#backgroundVideo {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
}
/* Add some basic styling */
.product{
text-align: center;
margin: 20px;
padding: 20px;
border: 2px solid #ff6600;
border-radius: 10px;
background: rgba(255, 255, 255, 0.1);
}
.product img {
max-width: 100%;
height: auto;
}
.info {
display: none;
}
/* Apply styles when hovering over a product */
.product:hover {
background: #e0e0e0;
}
.modal {
display: none;
position: fixed;
z-index: 1;
padding-top: 20px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.7);
text-align: center;
}
.modal-content {
max-width: 80%;
max-height: 80%;
margin: auto;
display: block;
}
.close {
position: absolute;
top: 10px;
right: 10px;
font-size: 24px;
color: #fff;
cursor: pointer;
}
.container {
margin: 20px;
padding: 20px;
border: 2px solid #ff6600;
border-radius: 10px;
background: rgba(255, 255, 255, 0.1);
}
.count[type="number"] {
width: 100px;
}
.calc {
margin-top: 10px;
background-color: #007bff;
color: #fff;
border: none;
padding: 10px 20px;
cursor: pointer;
}
.container {
margin: 100px auto;
width: 300px;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
}