plataforma-fundacao-componentes 2.23.11 → 2.23.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +121 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1,3 +1,124 @@
|
|
|
1
|
+
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
|
|
2
|
+
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
|
|
3
|
+
:export {
|
|
4
|
+
white: #fefefe;
|
|
5
|
+
darkenWhite: #efefef;
|
|
6
|
+
black: #121212;
|
|
7
|
+
transparent: rgba(0, 0, 0, 0);
|
|
8
|
+
primary: #3fa110;
|
|
9
|
+
primaryDark: #33820d;
|
|
10
|
+
primaryLight: #d7e6c8;
|
|
11
|
+
secondaryDarker: #323c32;
|
|
12
|
+
secondaryDark: #5a645a;
|
|
13
|
+
secondary: #828a82;
|
|
14
|
+
secondaryLight: #cdd3cd;
|
|
15
|
+
secondaryLighter: #f8f9f7;
|
|
16
|
+
danger: #e60000;
|
|
17
|
+
dangerLight: #ffb4b4;
|
|
18
|
+
dangerDark: #ab4745;
|
|
19
|
+
warning: #ffcd00;
|
|
20
|
+
warningLight: #ffeb98;
|
|
21
|
+
warningDark: #765f00; }
|
|
22
|
+
|
|
23
|
+
:export {
|
|
24
|
+
widthXs: 575.98px;
|
|
25
|
+
widthSm: 767.98px;
|
|
26
|
+
widthMd: 991.98px;
|
|
27
|
+
widthLg: 1199.98px; }
|
|
28
|
+
|
|
29
|
+
:root {
|
|
30
|
+
--rowPadding: 0;
|
|
31
|
+
--colPadding: 8px; }
|
|
32
|
+
|
|
33
|
+
body.sb-show-main.sb-main-padded {
|
|
34
|
+
padding: 15px; }
|
|
35
|
+
|
|
36
|
+
*.nunito {
|
|
37
|
+
font-family: "Nunito", sans-serif; }
|
|
38
|
+
|
|
39
|
+
*:not(.nunito) {
|
|
40
|
+
font-family: "Exo 2", sans-serif; }
|
|
41
|
+
|
|
42
|
+
.document-grabbing {
|
|
43
|
+
cursor: -webkit-grabbing !important;
|
|
44
|
+
cursor: grabbing !important; }
|
|
45
|
+
|
|
46
|
+
h1 {
|
|
47
|
+
font-size: 36px;
|
|
48
|
+
font-weight: 600;
|
|
49
|
+
margin: 0; }
|
|
50
|
+
|
|
51
|
+
h2 {
|
|
52
|
+
font-size: 32px;
|
|
53
|
+
font-weight: 500;
|
|
54
|
+
margin: 0; }
|
|
55
|
+
|
|
56
|
+
h3 {
|
|
57
|
+
font-size: 24px;
|
|
58
|
+
font-weight: 500;
|
|
59
|
+
margin: 0; }
|
|
60
|
+
|
|
61
|
+
h4 {
|
|
62
|
+
font-size: 18px;
|
|
63
|
+
font-weight: 500;
|
|
64
|
+
margin: 0; }
|
|
65
|
+
|
|
66
|
+
h5 {
|
|
67
|
+
font-family: "Nunito", sans-serif;
|
|
68
|
+
font-size: 24px;
|
|
69
|
+
font-weight: 400;
|
|
70
|
+
margin: 0; }
|
|
71
|
+
|
|
72
|
+
.fade-enter {
|
|
73
|
+
position: absolute;
|
|
74
|
+
opacity: 0; }
|
|
75
|
+
|
|
76
|
+
.fade-enter-active {
|
|
77
|
+
transition: opacity 0.2s ease;
|
|
78
|
+
position: absolute;
|
|
79
|
+
opacity: 1; }
|
|
80
|
+
|
|
81
|
+
.fade-exit {
|
|
82
|
+
position: absolute;
|
|
83
|
+
opacity: 1; }
|
|
84
|
+
|
|
85
|
+
.fade-exit-active {
|
|
86
|
+
transition: opacity 0.15s ease;
|
|
87
|
+
position: absolute;
|
|
88
|
+
opacity: 0; }
|
|
89
|
+
|
|
90
|
+
* {
|
|
91
|
+
box-sizing: border-box; }
|
|
92
|
+
*::-webkit-scrollbar-track {
|
|
93
|
+
background-color: #f8f9f7;
|
|
94
|
+
border-radius: 20px; }
|
|
95
|
+
*::-webkit-scrollbar {
|
|
96
|
+
width: 12px;
|
|
97
|
+
height: 12px; }
|
|
98
|
+
*::-webkit-scrollbar-thumb {
|
|
99
|
+
-webkit-transition: all 0.3s ease;
|
|
100
|
+
transition: all 0.3s ease;
|
|
101
|
+
border-radius: 10px;
|
|
102
|
+
background-color: #cdd3cd;
|
|
103
|
+
border-width: 3px;
|
|
104
|
+
border-style: solid;
|
|
105
|
+
border-color: #f8f9f7; }
|
|
106
|
+
*::-webkit-scrollbar-thumb:hover {
|
|
107
|
+
border-width: 2px;
|
|
108
|
+
background-color: #bfc7bf; }
|
|
109
|
+
*::-webkit-scrollbar-button {
|
|
110
|
+
display: none; }
|
|
111
|
+
|
|
112
|
+
.scroll-white::-webkit-scrollbar-track {
|
|
113
|
+
background-color: #fefefe;
|
|
114
|
+
border-radius: 20px; }
|
|
115
|
+
|
|
116
|
+
.scroll-white::-webkit-scrollbar-thumb {
|
|
117
|
+
background-color: #cdd3cd;
|
|
118
|
+
border-color: #fefefe; }
|
|
119
|
+
.scroll-white::-webkit-scrollbar-thumb:hover {
|
|
120
|
+
background-color: #bfc7bf; }
|
|
121
|
+
|
|
1
122
|
.icon-component {
|
|
2
123
|
fill: currentColor;
|
|
3
124
|
width: 1em;
|
package/dist/index.d.ts
CHANGED