sdga-ui 1.0.2 → 1.0.4
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/.editorconfig +23 -23
- package/.github/workflows/deploy.yml +57 -0
- package/.github/workflows/publish.yml +36 -33
- package/.prettierignore +73 -73
- package/.prettierrc +17 -17
- package/LICENSE +21 -21
- package/README.md +175 -167
- package/css/dga-ui.css +60 -30
- package/css/dga-ui.css.map +1 -1
- package/demo-angular/.editorconfig +17 -0
- package/demo-angular/.vscode/extensions.json +4 -0
- package/demo-angular/.vscode/launch.json +20 -0
- package/demo-angular/.vscode/tasks.json +42 -0
- package/demo-angular/README.md +59 -0
- package/demo-angular/angular.json +90 -0
- package/demo-angular/package-lock.json +10459 -0
- package/demo-angular/package.json +50 -0
- package/demo-angular/public/.nojekyll +0 -0
- package/demo-angular/public/favicon.ico +0 -0
- package/demo-angular/public/i18n/ar.json +239 -0
- package/demo-angular/public/i18n/en.json +239 -0
- package/demo-angular/src/app/app.config.ts +20 -0
- package/demo-angular/src/app/app.html +52 -0
- package/demo-angular/src/app/app.routes.ts +45 -0
- package/demo-angular/src/app/app.scss +430 -0
- package/demo-angular/src/app/app.spec.ts +23 -0
- package/demo-angular/src/app/app.ts +88 -0
- package/demo-angular/src/app/shared/code-example/code-example.component.html +30 -0
- package/demo-angular/src/app/shared/code-example/code-example.component.scss +183 -0
- package/demo-angular/src/app/shared/code-example/code-example.component.ts +78 -0
- package/demo-angular/src/app/views/alerts/alerts.component.html +155 -0
- package/demo-angular/src/app/views/alerts/alerts.component.scss +3 -0
- package/demo-angular/src/app/views/alerts/alerts.component.ts +134 -0
- package/demo-angular/src/app/views/bootstrap/bootstrap.component.html +14 -0
- package/demo-angular/src/app/views/bootstrap/bootstrap.component.scss +91 -0
- package/demo-angular/src/app/views/bootstrap/bootstrap.component.ts +23 -0
- package/demo-angular/src/app/views/buttons/buttons.component.html +289 -0
- package/demo-angular/src/app/views/buttons/buttons.component.scss +14 -0
- package/demo-angular/src/app/views/buttons/buttons.component.ts +155 -0
- package/demo-angular/src/app/views/cards/cards.component.html +156 -0
- package/demo-angular/src/app/views/cards/cards.component.html.backup +156 -0
- package/demo-angular/src/app/views/cards/cards.component.scss +11 -0
- package/demo-angular/src/app/views/cards/cards.component.ts +194 -0
- package/demo-angular/src/app/views/forms/forms.component.html +347 -0
- package/demo-angular/src/app/views/forms/forms.component.scss +3 -0
- package/demo-angular/src/app/views/forms/forms.component.ts +222 -0
- package/demo-angular/src/app/views/home/home.component.html +38 -0
- package/demo-angular/src/app/views/home/home.component.scss +35 -0
- package/demo-angular/src/app/views/home/home.component.ts +12 -0
- package/demo-angular/src/app/views/links/links.component.html +140 -0
- package/demo-angular/src/app/views/links/links.component.scss +60 -0
- package/demo-angular/src/app/views/links/links.component.ts +123 -0
- package/demo-angular/src/app/views/tables/tables.component.html +289 -0
- package/demo-angular/src/app/views/tables/tables.component.scss +3 -0
- package/demo-angular/src/app/views/tables/tables.component.ts +278 -0
- package/demo-angular/src/app/views/toasts/toasts.component.html +201 -0
- package/demo-angular/src/app/views/toasts/toasts.component.scss +0 -0
- package/demo-angular/src/app/views/toasts/toasts.component.ts +182 -0
- package/demo-angular/src/index.html +14 -0
- package/demo-angular/src/main.ts +6 -0
- package/demo-angular/src/styles.scss +4 -0
- package/demo-angular/tsconfig.app.json +15 -0
- package/demo-angular/tsconfig.json +33 -0
- package/demo-angular/tsconfig.spec.json +15 -0
- package/fonts/IBM_Plex_Sans_Arabic/OFL.txt +93 -93
- package/package.json +50 -47
- package/theme/_fonts.scss +58 -58
- package/theme/_functions.scss +11 -11
- package/theme/_variables.scss +50 -50
- package/theme/components/_accordion.scss +35 -35
- package/theme/components/_alerts.scss +11 -11
- package/theme/components/_badges.scss +8 -8
- package/theme/components/_breadcrumb.scss +13 -13
- package/theme/components/_buttons.scss +270 -270
- package/theme/components/_cards.scss +21 -21
- package/theme/components/_carousel.scss +33 -33
- package/theme/components/_content.scss +211 -211
- package/theme/components/_dropdowns.scss +45 -45
- package/theme/components/_forms-check.scss +124 -124
- package/theme/components/_forms-floating.scss +17 -17
- package/theme/components/_forms-inputs.scss +70 -70
- package/theme/components/_forms-range.scss +26 -26
- package/theme/components/_forms-select.scss +47 -47
- package/theme/components/_forms-switch.scss +63 -63
- package/theme/components/_forms-validation.scss +16 -16
- package/theme/components/_forms.scss +14 -14
- package/theme/components/_list-group.scss +26 -26
- package/theme/components/_modals.scss +42 -42
- package/theme/components/_navbar.scss +40 -40
- package/theme/components/_navigation.scss +151 -151
- package/theme/components/_offcanvas.scss +15 -15
- package/theme/components/_overlays.scss +112 -112
- package/theme/components/_pagination.scss +39 -39
- package/theme/components/_popovers.scss +26 -26
- package/theme/components/_progress.scss +11 -11
- package/theme/components/_spinners.scss +11 -11
- package/theme/components/_tables.scss +47 -47
- package/theme/components/_toasts.scss +16 -16
- package/theme/components/_tooltips.scss +15 -15
- package/theme/config/_base.scss +111 -111
- package/theme/config/_colors.scss +303 -303
- package/theme/config/_effects.scss +227 -227
- package/theme/config/_radius.scss +78 -78
- package/theme/config/_spacing.scss +155 -155
- package/theme/config/_typography.scss +118 -118
- package/theme/customizations/_alerts.scss +242 -242
- package/theme/customizations/_badges.scss +15 -15
- package/theme/customizations/_buttons.scss +209 -209
- package/theme/customizations/_cards.scss +117 -117
- package/theme/customizations/_forms-check.scss +278 -278
- package/theme/customizations/_forms-inputs.scss +9 -9
- package/theme/customizations/_forms-switch.scss +91 -91
- package/theme/customizations/_forms.scss +5 -5
- package/theme/customizations/_global.scss +25 -25
- package/theme/customizations/_links.scss +94 -46
- package/theme/customizations/_tables.scss +67 -67
- package/theme/customizations/_toasts.scss +221 -221
- package/theme/customizations/_utilities.scss +138 -138
- package/theme/dga-ui.scss +28 -28
package/README.md
CHANGED
|
@@ -1,167 +1,175 @@
|
|
|
1
|
-
# **DGA UI – Government-Style Bootstrap Theme**
|
|
2
|
-
|
|
3
|
-
**DGA UI** is a customizable UI theme inspired by modern government and authority design systems.
|
|
4
|
-
Built on top of **Bootstrap**, it provides consistent colors, typography, spacing, and reusable UI patterns suitable for official portals, administrative dashboards, and public-sector applications.
|
|
5
|
-
|
|
6
|
-
This package helps you apply a clean, structured, and authoritative look across your web interfaces with minimal setup.
|
|
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
|
-
@import "sdga-ui/
|
|
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
|
-
```bash
|
|
104
|
-
npm run
|
|
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
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
1
|
+
# **DGA UI – Government-Style Bootstrap Theme**
|
|
2
|
+
|
|
3
|
+
**DGA UI** is a customizable UI theme inspired by modern government and authority design systems.
|
|
4
|
+
Built on top of **Bootstrap**, it provides consistent colors, typography, spacing, and reusable UI patterns suitable for official portals, administrative dashboards, and public-sector applications.
|
|
5
|
+
|
|
6
|
+
This package helps you apply a clean, structured, and authoritative look across your web interfaces with minimal setup.
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## **🌐 Live Demo**
|
|
11
|
+
|
|
12
|
+
Check out the live demo and explore all components:
|
|
13
|
+
|
|
14
|
+
**[https://mahmoudadel1996.github.io/dga-ui/](https://mahmoudadel1996.github.io/dga-ui/)**
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## **✨ Features**
|
|
19
|
+
|
|
20
|
+
* Government-inspired design system
|
|
21
|
+
* Full compatibility with Bootstrap
|
|
22
|
+
* Custom color palette and typography
|
|
23
|
+
* Standardized spacing & component overrides
|
|
24
|
+
* Utility classes for layout and theming
|
|
25
|
+
* Light / dark mode friendly (optional)
|
|
26
|
+
* Easy to integrate into any frontend project
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
30
|
+
## **📦 Installation**
|
|
31
|
+
|
|
32
|
+
Install via npm:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
npm install sdga-ui
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
Or with yarn:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
yarn add sdga-ui
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
46
|
+
## **🔧 Usage**
|
|
47
|
+
|
|
48
|
+
### **Using the Compiled CSS**
|
|
49
|
+
|
|
50
|
+
Include the compiled CSS file in your HTML:
|
|
51
|
+
|
|
52
|
+
```html
|
|
53
|
+
<link rel="stylesheet" href="node_modules/sdga-ui/css/dga-ui.css">
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
Or import it in your JavaScript/CSS:
|
|
57
|
+
|
|
58
|
+
```css
|
|
59
|
+
@import "sdga-ui/css/dga-ui.css";
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
### **Using SCSS Source Files**
|
|
63
|
+
|
|
64
|
+
Import the theme in your SCSS file:
|
|
65
|
+
|
|
66
|
+
```scss
|
|
67
|
+
@import "sdga-ui/theme/dga-ui";
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
All Bootstrap components automatically adopt the DGA UI theme.
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
## **📁 File Structure**
|
|
75
|
+
|
|
76
|
+
```
|
|
77
|
+
dga-ui/
|
|
78
|
+
│
|
|
79
|
+
├─ css/ # Compiled CSS output
|
|
80
|
+
│ └─ dga-ui.css
|
|
81
|
+
├─ fonts/ # Font files (IBM Plex Sans Arabic)
|
|
82
|
+
├─ theme/ # Source SCSS theme files
|
|
83
|
+
│ ├─ dga-ui.scss # Main theme entry point
|
|
84
|
+
│ ├─ _fonts.scss
|
|
85
|
+
│ ├─ _functions.scss
|
|
86
|
+
│ ├─ _variables.scss
|
|
87
|
+
│ ├─ config/ # Base configuration
|
|
88
|
+
│ ├─ components/ # Component styles
|
|
89
|
+
│ └─ customizations/ # Theme customizations
|
|
90
|
+
├─ package.json
|
|
91
|
+
├─ LICENSE
|
|
92
|
+
└─ README.md
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
---
|
|
96
|
+
|
|
97
|
+
## **🛠 Development**
|
|
98
|
+
|
|
99
|
+
### **Building the CSS**
|
|
100
|
+
|
|
101
|
+
Compile the SCSS to CSS:
|
|
102
|
+
|
|
103
|
+
```bash
|
|
104
|
+
npm run build-css
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
### **Watch Mode**
|
|
108
|
+
|
|
109
|
+
Watch for changes and auto-compile:
|
|
110
|
+
|
|
111
|
+
```bash
|
|
112
|
+
npm run watch-css
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
### **Customization**
|
|
116
|
+
|
|
117
|
+
You can override SCSS variables before importing the theme:
|
|
118
|
+
|
|
119
|
+
```scss
|
|
120
|
+
// Your custom variables
|
|
121
|
+
$primary: #0d47a1;
|
|
122
|
+
$secondary: #ffc107;
|
|
123
|
+
|
|
124
|
+
// Import the DGA UI theme
|
|
125
|
+
@import "dga-ui/theme/dga-ui";
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
---
|
|
129
|
+
|
|
130
|
+
## **🎨 Theme Structure**
|
|
131
|
+
|
|
132
|
+
The theme is organized into three main sections:
|
|
133
|
+
|
|
134
|
+
- **config/** - Base configuration (colors, typography, spacing, etc.)
|
|
135
|
+
- **components/** - Bootstrap component overrides
|
|
136
|
+
- **customizations/** - Additional styling and utilities
|
|
137
|
+
|
|
138
|
+
---
|
|
139
|
+
|
|
140
|
+
## **📚 Roadmap**
|
|
141
|
+
|
|
142
|
+
* React / Angular UI components
|
|
143
|
+
* Icon set
|
|
144
|
+
* Forms enhancement
|
|
145
|
+
* Grid templates
|
|
146
|
+
* Additional themes (municipal, ministry, authority variants)
|
|
147
|
+
|
|
148
|
+
---
|
|
149
|
+
|
|
150
|
+
## **🤝 Contributing**
|
|
151
|
+
|
|
152
|
+
Contributions are welcome!
|
|
153
|
+
Feel free to open issues, submit pull requests, or suggest improvements.
|
|
154
|
+
|
|
155
|
+
---
|
|
156
|
+
|
|
157
|
+
## **📄 License**
|
|
158
|
+
|
|
159
|
+
MIT License — free for personal and commercial use.
|
|
160
|
+
|
|
161
|
+
---
|
|
162
|
+
|
|
163
|
+
## **👤 Author**
|
|
164
|
+
|
|
165
|
+
Created and maintained by **Mahmoud**.
|
|
166
|
+
|
|
167
|
+
---
|
|
168
|
+
|
|
169
|
+
If you want, I can also generate:
|
|
170
|
+
|
|
171
|
+
✅ A logo
|
|
172
|
+
✅ A color palette for the authority theme
|
|
173
|
+
✅ Example screenshots/mockups
|
|
174
|
+
✅ NPM keywords
|
|
175
|
+
Just tell me!
|
package/css/dga-ui.css
CHANGED
|
@@ -8613,14 +8613,14 @@ textarea.form-control-lg {
|
|
|
8613
8613
|
--dga-btn-color: #1B8354;
|
|
8614
8614
|
--dga-btn-bg: transparent;
|
|
8615
8615
|
--dga-btn-border-color: transparent;
|
|
8616
|
-
--dga-btn-hover-color:
|
|
8616
|
+
--dga-btn-hover-color: #1B8354;
|
|
8617
8617
|
--dga-btn-hover-border-color: transparent;
|
|
8618
|
-
--dga-btn-active-color:
|
|
8618
|
+
--dga-btn-active-color: #1B8354;
|
|
8619
8619
|
--dga-btn-active-border-color: transparent;
|
|
8620
8620
|
--dga-btn-disabled-color: #4D5761;
|
|
8621
8621
|
--dga-btn-disabled-border-color: transparent;
|
|
8622
8622
|
--dga-btn-box-shadow: 0 0 0 #000;
|
|
8623
|
-
--dga-btn-focus-shadow-rgb:
|
|
8623
|
+
--dga-btn-focus-shadow-rgb: none;
|
|
8624
8624
|
text-decoration: none;
|
|
8625
8625
|
}
|
|
8626
8626
|
.btn-link:hover, .btn-link:focus-visible {
|
|
@@ -26421,9 +26421,9 @@ html {
|
|
|
26421
26421
|
}
|
|
26422
26422
|
.card .card-title-checked {
|
|
26423
26423
|
margin-inline-start: auto;
|
|
26424
|
-
margin-inline-end:
|
|
26425
|
-
margin-top:
|
|
26426
|
-
margin-bottom:
|
|
26424
|
+
margin-inline-end: 1rem;
|
|
26425
|
+
margin-top: 1rem;
|
|
26426
|
+
margin-bottom: 1rem;
|
|
26427
26427
|
}
|
|
26428
26428
|
.card .card-text {
|
|
26429
26429
|
margin: 0;
|
|
@@ -27152,45 +27152,75 @@ html {
|
|
|
27152
27152
|
}
|
|
27153
27153
|
|
|
27154
27154
|
.link-primary {
|
|
27155
|
-
|
|
27156
|
-
|
|
27157
|
-
|
|
27158
|
-
|
|
27155
|
+
color: #1B8354 !important;
|
|
27156
|
+
}
|
|
27157
|
+
.link-primary:hover, .link-primary:focus {
|
|
27158
|
+
color: #54C08A !important;
|
|
27159
|
+
text-decoration-color: #54C08A !important;
|
|
27160
|
+
}
|
|
27161
|
+
.link-primary:active {
|
|
27162
|
+
color: #88D8AD !important;
|
|
27163
|
+
text-decoration-color: #88D8AD !important;
|
|
27159
27164
|
}
|
|
27160
27165
|
|
|
27161
27166
|
.link-secondary {
|
|
27162
|
-
|
|
27163
|
-
|
|
27164
|
-
|
|
27165
|
-
|
|
27167
|
+
color: #4D5761 !important;
|
|
27168
|
+
}
|
|
27169
|
+
.link-secondary:hover, .link-secondary:focus {
|
|
27170
|
+
color: #9DA4AE !important;
|
|
27171
|
+
text-decoration-color: #9DA4AE !important;
|
|
27172
|
+
}
|
|
27173
|
+
.link-secondary:active {
|
|
27174
|
+
color: #D2D6DB !important;
|
|
27175
|
+
text-decoration-color: #D2D6DB !important;
|
|
27166
27176
|
}
|
|
27167
27177
|
|
|
27168
27178
|
.link-success {
|
|
27169
|
-
|
|
27170
|
-
|
|
27171
|
-
|
|
27172
|
-
|
|
27179
|
+
color: #079455 !important;
|
|
27180
|
+
}
|
|
27181
|
+
.link-success:hover, .link-success:focus {
|
|
27182
|
+
color: #47CD89 !important;
|
|
27183
|
+
text-decoration-color: #47CD89 !important;
|
|
27184
|
+
}
|
|
27185
|
+
.link-success:active {
|
|
27186
|
+
color: #75E0A7 !important;
|
|
27187
|
+
text-decoration-color: #75E0A7 !important;
|
|
27173
27188
|
}
|
|
27174
27189
|
|
|
27175
27190
|
.link-danger {
|
|
27176
|
-
|
|
27177
|
-
|
|
27178
|
-
|
|
27179
|
-
|
|
27191
|
+
color: #D92D20 !important;
|
|
27192
|
+
}
|
|
27193
|
+
.link-danger:hover, .link-danger:focus {
|
|
27194
|
+
color: #F97066 !important;
|
|
27195
|
+
text-decoration-color: #F97066 !important;
|
|
27196
|
+
}
|
|
27197
|
+
.link-danger:active {
|
|
27198
|
+
color: #FDA29B !important;
|
|
27199
|
+
text-decoration-color: #FDA29B !important;
|
|
27180
27200
|
}
|
|
27181
27201
|
|
|
27182
27202
|
.link-warning {
|
|
27183
|
-
|
|
27184
|
-
|
|
27185
|
-
|
|
27186
|
-
|
|
27203
|
+
color: #DC6803 !important;
|
|
27204
|
+
}
|
|
27205
|
+
.link-warning:hover, .link-warning:focus {
|
|
27206
|
+
color: #FDB022 !important;
|
|
27207
|
+
text-decoration-color: #FDB022 !important;
|
|
27208
|
+
}
|
|
27209
|
+
.link-warning:active {
|
|
27210
|
+
color: #FEC84B !important;
|
|
27211
|
+
text-decoration-color: #FEC84B !important;
|
|
27187
27212
|
}
|
|
27188
27213
|
|
|
27189
27214
|
.link-info {
|
|
27190
|
-
|
|
27191
|
-
|
|
27192
|
-
|
|
27193
|
-
|
|
27215
|
+
color: #1570EF !important;
|
|
27216
|
+
}
|
|
27217
|
+
.link-info:hover, .link-info:focus {
|
|
27218
|
+
color: #53B1FD !important;
|
|
27219
|
+
text-decoration-color: #53B1FD !important;
|
|
27220
|
+
}
|
|
27221
|
+
.link-info:active {
|
|
27222
|
+
color: #84CAFF !important;
|
|
27223
|
+
text-decoration-color: #84CAFF !important;
|
|
27194
27224
|
}
|
|
27195
27225
|
|
|
27196
27226
|
.bg-neutral {
|