failuregem 0.0.9.7.3 → 0.0.9.7.5
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.
- checksums.yaml +4 -4
- data/vendor/assets/javascripts/failure.js +5 -0
- data/vendor/assets/stylesheets/failure.sass +42 -5
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9f08b6c07d1610f4cafa43600631741383f729d63a41de524192f762bcf65790
|
|
4
|
+
data.tar.gz: c49aa8423e2ef29bf73c60a96b157c0ae22083b2170d49ba2bd5dc7925476f1f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 02d5b8de94dbc2c7cee0e2dbfc514e07254bd849420a53897c2a2c8f11c69842652c3aad37f05de2705e75116db774357224bcf0de94abb8b57b36d2734b8f7f
|
|
7
|
+
data.tar.gz: ba79beccc97cfd281dfea391789770f330520d9c47864975c009a4de675b84e48509e3026c80f1a10f180a8f156e7b9718be1982d9a079fcf49207e10f44aeaf
|
|
@@ -31,7 +31,8 @@ $warning1: #F39C12
|
|
|
31
31
|
$warning2: #F1C40F
|
|
32
32
|
$error1: #C0392B
|
|
33
33
|
$error2: #E74C3C
|
|
34
|
-
|
|
34
|
+
$primary: #2C3E50
|
|
35
|
+
$seccond: #1ABC9C
|
|
35
36
|
|
|
36
37
|
//---Devise flash messages---//
|
|
37
38
|
|
|
@@ -99,9 +100,11 @@ h6, h6 a, h6 span, h6 span span
|
|
|
99
100
|
font-size: 16px !important
|
|
100
101
|
|
|
101
102
|
a
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
103
|
+
&:not(.btn)
|
|
104
|
+
&:not(#title)
|
|
105
|
+
color: $turq1
|
|
106
|
+
&:hover
|
|
107
|
+
color: $turq2
|
|
105
108
|
|
|
106
109
|
.btn-primary
|
|
107
110
|
background-color: $turq1
|
|
@@ -112,6 +115,9 @@ a
|
|
|
112
115
|
.inactive_user
|
|
113
116
|
color: $gray1
|
|
114
117
|
|
|
118
|
+
.main_color
|
|
119
|
+
color: $turq1
|
|
120
|
+
|
|
115
121
|
//----HEADER & NAVIGATION-----//
|
|
116
122
|
|
|
117
123
|
.navbar-default, .navbar-header, .navbar-collapse, .header, .navbar-light
|
|
@@ -153,7 +159,7 @@ a
|
|
|
153
159
|
|
|
154
160
|
//----CUSTOM NAV-----------//
|
|
155
161
|
#title
|
|
156
|
-
color: $white1
|
|
162
|
+
color: $white1 !important
|
|
157
163
|
font-size: 30px
|
|
158
164
|
|
|
159
165
|
#subtitle
|
|
@@ -312,3 +318,34 @@ body
|
|
|
312
318
|
.divider
|
|
313
319
|
height: 150px
|
|
314
320
|
width: 100%
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
//----APPS--Failure_home---------//
|
|
325
|
+
.card-img-top
|
|
326
|
+
width: 100%
|
|
327
|
+
height: 200px
|
|
328
|
+
.bg-seccond
|
|
329
|
+
background-color: #1ABC9C
|
|
330
|
+
|
|
331
|
+
.txt-seccond
|
|
332
|
+
color: #1ABC9C
|
|
333
|
+
|
|
334
|
+
.txt-primary
|
|
335
|
+
color: $primary
|
|
336
|
+
|
|
337
|
+
.primary-bg-hover
|
|
338
|
+
&:hover
|
|
339
|
+
background-color: $primary
|
|
340
|
+
|
|
341
|
+
.seccond-bg-hover
|
|
342
|
+
&:hover
|
|
343
|
+
background-color: $seccond
|
|
344
|
+
|
|
345
|
+
.primary-txt-hover
|
|
346
|
+
&:hover
|
|
347
|
+
color: $primary !important
|
|
348
|
+
|
|
349
|
+
.seccond-txt-hover
|
|
350
|
+
&:hover
|
|
351
|
+
color: $seccond !important
|