source: resources/assets/sass/components/color.scss@ 7304c7f

develop
Last change on this file since 7304c7f was 7304c7f, checked in by beratkjufliju <kufliju@…>, 3 years ago

added user authentication, create & forgot password methods and blades

  • Property mode set to 100644
File size: 5.4 KB
Line 
1.bg-primary {
2 background: $color-primary !important;
3 color: white !important;
4}
5
6.bg-primary-bright {
7 background: $color-primary-bright !important;
8 &.bg-hover {
9 transition: background .2s;
10 &:hover {
11 background: rgba(11,91,182,.3) !important;
12 }
13 }
14}
15
16.bg-primary-gradient {
17 background: linear-gradient(230deg, $color-primary, lighten($color-primary, 15%)) !important;
18 color: white !important;
19}
20
21.bg-info {
22 background: $color-info !important;
23 color: white !important;
24 &.bg-hover {
25 transition: background .2s;
26 &:hover {
27 background: lighten($color-info, 10%) !important;
28 }
29 }
30}
31
32.bg-info-bright {
33 background: $color-info-bright !important;
34 &.bg-hover {
35 transition: background .2s;
36 &:hover {
37 background: darken($color-info-bright, 5%) !important;
38 }
39 }
40}
41
42.bg-info-gradient {
43 background: linear-gradient(230deg, $color-info, lighten($color-info, 15%)) !important;
44 color: white !important;
45}
46
47.bg-secondary {
48 background: $color-secondary !important;
49 color: white !important;
50 &.bg-hover {
51 transition: background .2s;
52 &:hover {
53 background: lighten($color-secondary, 10%) !important;
54 }
55 }
56}
57
58.bg-secondary-bright {
59 background: $color-secondary-bright !important;
60 &.bg-hover {
61 transition: background .2s;
62 &:hover {
63 background: darken($color-secondary-bright, 5%) !important;
64 }
65 }
66}
67
68.bg-secondary-gradient {
69 background: linear-gradient(230deg, $color-secondary, lighten($color-secondary, 15%)) !important;
70 color: white !important;
71}
72
73.bg-success {
74 background: $color-success !important;
75 color: white !important;
76 &.bg-hover {
77 transition: background .2s;
78 &:hover {
79 background: lighten($color-success, 10%) !important;
80 }
81 }
82}
83
84.bg-success-bright {
85 background: $color-success-bright !important;
86 &.bg-hover {
87 transition: background .2s;
88 &:hover {
89 background: darken($color-success-bright, 5%) !important;
90 }
91 }
92}
93
94.bg-success-gradient {
95 background: linear-gradient(230deg, $color-success, lighten($color-success, 15%)) !important;
96 color: white !important;
97}
98
99.bg-danger {
100 background: $color-danger !important;
101 color: white !important;
102 &.bg-hover {
103 transition: background .2s;
104 &:hover {
105 background: lighten($color-danger, 10%) !important;
106 }
107 }
108}
109
110.bg-danger-bright {
111 background: $color-danger-bright !important;
112 &.bg-hover {
113 transition: background .2s;
114 &:hover {
115 background: darken($color-danger-bright, 5%) !important;
116 }
117 }
118}
119
120.bg-danger-gradient {
121 background: linear-gradient(230deg, $color-danger, lighten($color-danger, 15%)) !important;
122 color: white !important;
123}
124
125.bg-warning {
126 background: $color-warning !important;
127 color: white !important;
128 &.bg-hover {
129 transition: background .2s;
130 &:hover {
131 background: lighten($color-warning, 10%) !important;
132 }
133 }
134}
135
136.bg-warning-bright {
137 background: $color-warning-bright !important;
138 &.bg-hover {
139 transition: background .2s;
140 &:hover {
141 background: darken($color-warning-bright, 5%) !important;
142 }
143 }
144}
145
146.bg-warning-gradient {
147 background: linear-gradient(230deg, $color-warning, lighten($color-warning, 15%)) !important;
148 color: white !important;
149}
150
151.bg-light {
152 background: $color-light !important;
153}
154
155.bg-dark {
156 background: $color-dark !important;
157 color: white !important;
158 &.bg-hover {
159 transition: background .2s;
160 &:hover {
161 background: lighten($color-dark, 10%) !important;
162 }
163 }
164}
165
166.bg-dark-bright {
167 background: $color-dark-bright !important;
168 &.bg-hover {
169 transition: background .2s;
170 &:hover {
171 background: darken($color-dark-bright, 5%) !important;
172 }
173 }
174}
175
176.bg-dark-gradient {
177 background: linear-gradient(230deg, $color-dark, lighten($color-dark, 15%)) !important;
178 color: white !important;
179}
180
181.bg-facebook {
182 background: $color-facebook !important;
183 color: white !important;
184}
185
186.bg-twitter {
187 background: $color-twitter !important;
188 color: white !important;
189}
190
191.bg-linkedin {
192 background: $color-linkedin !important;
193 color: white !important;
194}
195
196.bg-whatsapp {
197 background: $color-whatsapp !important;
198 color: white !important;
199}
200
201.bg-instagram {
202 background: $color-instagram !important;
203 color: white !important;
204}
205
206.bg-dribbble {
207 background: $color-dribbble !important;
208 color: white !important;
209}
210
211.bg-google {
212 background: $color-google !important;
213 color: white !important;
214}
215
216.bg-youtube {
217 background: $color-youtube !important;
218 color: white !important;
219}
220
221// texts
222
223.text-primary {
224 color: $color-primary !important;
225}
226
227.text-secondary {
228 color: $color-secondary !important;
229}
230
231.text-info {
232 color: $color-info !important;
233}
234
235.text-success {
236 color: $color-success !important;
237}
238
239.text-danger {
240 color: $color-danger !important;
241}
242
243.text-warning {
244 color: $color-warning !important;
245}
246
247.text-light {
248 color: $color-light!important;
249}
250
251.text-facebook {
252 color: $color-facebook!important;
253}
254
255.text-twitter {
256 color: $color-twitter!important;
257}
258
259.text-google {
260 color: $color-google!important;
261}
262
263.text-linkedin {
264 color: $color-linkedin!important;
265}
266
267.text-instagram {
268 color: $color-instagram!important;
269}
270
271.text-whatsapp {
272 color: $color-whatsapp!important;
273}
274
275.text-dribbble {
276 color: $color-dribbble!important;
277}
Note: See TracBrowser for help on using the repository browser.