-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (54 loc) · 1.04 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
.gradient-text {
background: linear-gradient(to right, #DD0000, #DD6666);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.secondary-gradient-text {
background: linear-gradient(to right, #DD6666, #DDDDDD);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
img{
max-width: 50%;
height: auto;
}
#productImage{
max-width: 100%;
height: auto;
}
.AboutUsHeader{
color: #6f42c1;
}
.grid-container {
display: grid;
gap: 10px;
grid-template-columns: auto auto auto auto;
}
.flex-container {
display: flex;
justify-content: center;
}
.flex-container-vertical {
display: flex;
flex-direction: column;
}
.sidebars{
min-width: 100px;
width: 15%;
}
#MeblexText{
margin-top: 15%;
}
#footer {
position: absolute;
bottom: 0;
width: 100%;
height: 2.5rem; /* Footer height */
}
#page-container {
position: relative;
min-height: 100vh;
}
#content-wrap {
padding-bottom: 2.5rem; /* Footer height */
}