blob: 5fc673aaf5e30032fc2efc5c422350b47c1f7d15 (
plain)
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
|
:root {
--bs-font-family-heading: 'Outfit', sans-serif;
}
#title {
background: -webkit-linear-gradient(45deg, #ffd400 15%, #ee2d75, #0169ee 80%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: none !important;
}
@media (min-width: 576px) {
.img-machine {
width: 350px;
}
}
td {
background-color: rgba(255,0,0,0) !important;
}
td {
color: var(--bs-primary) !important;
}
@media (max-width: 575px) {
#img-logo {
width: 200px;
height: auto;
}
}
..dropdown-menu {
text-align: left;
}
|