-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.css
135 lines (121 loc) · 2.62 KB
/
tailwind.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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
/* Allow changing font family via CMS */
html {
font-family: var(--font-family);
}
/** Remove default styles from input[type=number] */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Disable scroll once drawer/modal is openned */
body:has(.drawer-toggle:checked),
body:has(.modal-toggle:checked) {
overflow: hidden;
height: 100vh;
}
}
/* Adiciona a classe no CSS global */
.scrollbar-hidden::-webkit-scrollbar {
display: none;
}
.scrollbar-hidden {
-ms-overflow-style: none; /* IE e Edge */
scrollbar-width: none; /* Firefox */
}
@layer components {
.custom-select {
-webkit-appearance: none; /* Safari e Chrome */
-moz-appearance: none; /* Firefox */
appearance: none;
background-color: white; /* Definir a cor de fundo */
}
.custom-select::-ms-expand {
display: none; /* Remover seta para o Internet Explorer */
}
.custom-container {
max-width: 1700px;
margin-left: auto;
margin-right: auto;
padding: 0.625rem;
/* text-align: center; */
}
@media only screen and (max-width: 1800px) and (min-width: 1360px) {
.custom-container {
max-width: 1300px;
padding: 0.625rem;
}
}
@media only screen and (max-width: 1360px) and (min-width: 1220px) {
.custom-container {
max-width: 1200px;
padding: 0.625rem;
}
}
@media only screen and (max-width: 768px) {
.custom-container {
padding: 0px;
}
.py-0 {
padding-right: 0 !important;
padding-left: 0 !important;
}
}
.has-submenu {
position: relative;
margin-right: 10px;
}
.has-submenu::after {
content: "";
height: 24px;
width: 1px;
background-color: #fff;
position: absolute;
right: 5px;
}
.has-submenu a {
font-weight: 600;
}
}
.group:disabled .group-disabled\:animate-progress {
animation: progress-frame ease normal;
}
@keyframes progress-frame {
0% {
--dot-progress: 0%;
}
to {
--dot-progress: 100%;
}
}
@layer components {
.color-white {
color: #fff;
}
.btn-carousel {
@apply text-white;
background: none;
border: none;
}
}
@layer components {
.container-submenu {
width: calc(100% - 405px);
}
@media (max-width: 640px) {
.mobile-truncate {
display: -webkit-box;
overflow: hidden;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
line-clamp: 1;
text-overflow: ellipsis;
line-height: 1.5;
height: 2.5em;
}
}
}