-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
98 lines (85 loc) · 1.43 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
@font-face {
font-family: Fira_Sans;
src: url(./Assets/Fonts/Fira_Sans/FiraSans-Medium.ttf);
}
* {
overflow-x: hidden;
--main-text-color: #002b5c;
--alert-color: #d64045;
}
body {
font-family: Fira_Sans;
color: var(--main-text-color);
}
.navbar-brand {
width: 15ch;
font-size: 1.5rem;
font-weight: bolder;
font-style: italic;
}
.navbar-brand span {
color: var(--main-text-color);
}
.navbar-brand img {
position: relative;
width: 30px;
overflow: visible;
bottom: 2px;
transform: skew(-5deg);
}
.hidden {
display: none;
}
.card img,
#checkout img {
width: 100%;
height: 14rem;
object-fit: cover;
object-position: 50% 50%;
}
.card button {
margin-top: 10%;
}
.sale-watermark {
width: 150px;
text-align: center;
height: 25px;
color: #fff;
position: absolute;
transform: rotate(-45deg);
top: 20px;
left: -40px;
background-color: var(--alert-color);
opacity: 0.85;
}
#checkout img {
height: 20rem;
}
img[src$=".svg"] {
filter: invert(12%) sepia(75%) saturate(2065%) hue-rotate(197deg)
brightness(95%) contrast(102%);
}
@media (min-width: 1000px) {
#form img {
height: 150px;
}
}
@media (min-width: 768px) {
#addonsCheckout {
min-height: 14.5rem;
}
#checkout img {
max-height: 20rem;
object-fit: cover;
}
}
@media (max-width: 920px) {
#addonsContainer p {
height: 2.8rem;
}
}
@media (max-width: 535px) {
#addonsContainer p {
height: 4.1rem;
}
}