Browse code

Created repository.

DoubleBastionAdmin authored on 02/03/2022 00:26:46
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,288 @@
1
+#banner {
2
+  color: #fff;
3
+  .message-container {
4
+    display: table;
5
+    width: auto;
6
+    margin: 0 auto;
7
+    padding: 15px 0;
8
+  }
9
+  .tagline, .action {
10
+    display: table-cell;
11
+    vertical-align: middle;
12
+  }
13
+  .tagline {
14
+    font-weight: 200;
15
+    font-size: 16px;
16
+    padding-right: 30px;
17
+  }
18
+
19
+  &.font-awesome-survey {
20
+    @survey-bg: #8E8F94;
21
+    background-color: @survey-bg;
22
+    border-bottom: solid 1px mix(@survey-bg, #fff, 95%);
23
+
24
+    .btn-primary {
25
+      @color: mix(#fff,@survey-bg,80%);
26
+      @background: darken(@survey-bg, 15%);
27
+      @border: darken(@background, 15%);
28
+      font-weight: bold;
29
+      color: @color;
30
+      background-color: @background;
31
+      border-color: @border;
32
+      border-bottom-width: 2px;
33
+      text-shadow: none;
34
+      border-radius: 4px;
35
+
36
+      &:hover,
37
+      &:focus,
38
+      &:active,
39
+      &.active,
40
+      .open > &.dropdown-toggle {
41
+        color: #fff;
42
+        background-color: darken(@border, 10%);
43
+        border-color: darken(@border, 20%);
44
+        border-bottom-color: darken(@border, 30%);
45
+      }
46
+      &:active,
47
+      &.active,
48
+      .open > &.dropdown-toggle {
49
+        background-image: none;
50
+      }
51
+      &.disabled,
52
+      &[disabled],
53
+      fieldset[disabled] & {
54
+        &,
55
+        &:hover,
56
+        &:focus,
57
+        &:active,
58
+        &.active {
59
+          background-color: @background;
60
+          border-color: @border;
61
+        }
62
+      }
63
+    }
64
+
65
+
66
+  }
67
+
68
+  &.black-tie {
69
+    @black-tie-bg: #2E2E2E;
70
+    background-color: @black-tie-bg;
71
+    border-bottom: solid 1px mix(@black-tie-bg, #fff, 95%);
72
+
73
+    .btn-primary {
74
+      @color: mix(#fff, @black-tie-bg, 85%);
75
+      @background: darken(@black-tie-bg, 5%);
76
+      @border: darken(@black-tie-bg, 10%);
77
+      font-weight: bold;
78
+      color: @color;
79
+      background-color: @background;
80
+      border-color: @border;
81
+      border-bottom-width: 2px;
82
+      text-shadow: none;
83
+      border-radius: 4px;
84
+
85
+      &:hover,
86
+      &:focus,
87
+      &:active,
88
+      &.active,
89
+      .open > &.dropdown-toggle {
90
+        color: #fff;
91
+        background-color: darken(@background, 5%);
92
+        border-color: darken(@border, 12%);
93
+        border-bottom-color: darken(@border, 18%);
94
+      }
95
+      &:active,
96
+      &.active,
97
+      .open > &.dropdown-toggle {
98
+        background-image: none;
99
+      }
100
+      &.disabled,
101
+      &[disabled],
102
+      fieldset[disabled] & {
103
+        &,
104
+        &:hover,
105
+        &:focus,
106
+        &:active,
107
+        &.active {
108
+          background-color: @background;
109
+          border-color: @border;
110
+        }
111
+      }
112
+    }
113
+  }
114
+
115
+  &.fort-awesome {
116
+    @fort-awesome-color: #1C1E29;
117
+    @fort-awesome-color-accent: #525879;
118
+    @fort-awesome-bg: #2d2f39;
119
+    background-color: @fort-awesome-bg;
120
+    border-bottom: solid 1px mix(@fort-awesome-bg, #000, 15%);
121
+    .btn-primary {
122
+      @color: #fff;
123
+      @background: #ff8c52;
124
+      @border: rgba(0,0,0,0.2);
125
+      font-weight: bold;
126
+      color: @color;
127
+      background-color: @background;
128
+      border-color: @border;
129
+      border-bottom-width: 2px;
130
+      text-shadow: none;
131
+      border-radius: 4px;
132
+
133
+      &:hover,
134
+      &:focus,
135
+      &:active,
136
+      &.active,
137
+      .open > &.dropdown-toggle {
138
+        color: #fff;
139
+        background-color: #e67e4a;
140
+        border-color: rgba(0,0,0,0.296);
141
+        border-bottom-color: rgba(0,0,0,0.296);
142
+      }
143
+      &:active,
144
+      &.active,
145
+      .open > &.dropdown-toggle {
146
+        background-image: none;
147
+      }
148
+      &.disabled,
149
+      &[disabled],
150
+      fieldset[disabled] & {
151
+        &,
152
+        &:hover,
153
+        &:focus,
154
+        &:active,
155
+        &.active {
156
+          background-color: @background;
157
+          border-color: @border;
158
+        }
159
+      }
160
+    }
161
+  }
162
+
163
+  &.symbolset {
164
+    @symbolset-bg: desaturate(#866cba,5%);
165
+    background-color: @symbolset-bg;
166
+    border-bottom: rgba(0,0,0,0.2);
167
+    a:not(.btn) {
168
+      text-decoration: underline;
169
+      color: #fff;
170
+      &:hover { color: rgba(255,255,255,.8); }
171
+    }
172
+    .btn-primary {
173
+      @color: @symbolset-bg;
174
+      @background: #fff;
175
+      @border: mix(#000,@symbolset-bg,10%);
176
+      font-weight: bold;
177
+      color: @color;
178
+      background-color: @background;
179
+      border-color: @border;
180
+      border-bottom-width: 2px;
181
+      text-shadow: none;
182
+      border-radius: 4px;
183
+
184
+      &:hover,
185
+      &:focus,
186
+      &:active,
187
+      &.active,
188
+      .open > &.dropdown-toggle {
189
+        color: #fff;
190
+        background-color: rgba(0,0,0,0.2);
191
+        border-color: rgba(0,0,0,0.2);
192
+        border-bottom-color: rgba(0,0,0,0.2);
193
+      }
194
+      &:active,
195
+      &.active,
196
+      .open > &.dropdown-toggle {
197
+        background-image: none;
198
+      }
199
+      &.disabled,
200
+      &[disabled],
201
+      fieldset[disabled] & {
202
+        &,
203
+        &:hover,
204
+        &:focus,
205
+        &:active,
206
+        &.active {
207
+          background-color: @background;
208
+          border-color: @border;
209
+        }
210
+      }
211
+    }
212
+  }
213
+
214
+  &.fa5 {
215
+    @fa5-bg: #488dd8;
216
+    background-color: @fa5-bg;
217
+    border-bottom: rgba(0,0,0,0.2);
218
+    .message-container { padding: 40px 0; }
219
+    .tagline { font-size: 24px; }
220
+    .fa-external-link { vertical-align: -10%; }
221
+    .time-left {
222
+      font-size: 18px;
223
+      color: mix(@fa5-bg, #fff, 20%);
224
+    }
225
+    @keyframes flash-duration {
226
+      from {
227
+        color: #fff;
228
+      }
229
+      to {
230
+        color: mix(@fa5-bg, #fff, 20%);
231
+      }
232
+    }
233
+    .duration {
234
+      font-weight: 600;
235
+      animation-name: flash-duration;
236
+      animation-duration: 1.0s;
237
+    }
238
+    a:not(.btn) {
239
+      text-decoration: underline;
240
+      color: #fff;
241
+      &:hover { color: rgba(255,255,255,.8); }
242
+    }
243
+    .btn-primary {
244
+      @color: @fa5-bg;
245
+      @background: #fff;
246
+      @border: mix(#000,@fa5-bg,10%);
247
+      font-weight: 600;
248
+      font-size: 22px;
249
+      padding: 14px 28px;
250
+      border-radius: 30px;
251
+
252
+      color: @color;
253
+      background-color: @background;
254
+      border-color: @border;
255
+      border-bottom-width: 2px;
256
+      text-shadow: none;
257
+
258
+      &:hover,
259
+      &:focus,
260
+      &:active,
261
+      &.active,
262
+      .open > &.dropdown-toggle {
263
+        color: #fff;
264
+        background-color: rgba(0,0,0,0.2);
265
+        border-color: rgba(0,0,0,0.2);
266
+        border-bottom-color: rgba(0,0,0,0.2);
267
+      }
268
+      &:active,
269
+      &.active,
270
+      .open > &.dropdown-toggle {
271
+        background-image: none;
272
+      }
273
+      &.disabled,
274
+      &[disabled],
275
+      fieldset[disabled] & {
276
+        &,
277
+        &:hover,
278
+        &:focus,
279
+        &:active,
280
+        &.active {
281
+          background-color: @background;
282
+          border-color: @border;
283
+        }
284
+      }
285
+    }
286
+  }
287
+
288
+}