create-young-proj 0.0.1 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (121) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +13 -2
  3. package/dist/index.mjs +18 -18
  4. package/index.mjs +3 -3
  5. package/package.json +10 -12
  6. package/template-admin-server/.editorconfig +11 -0
  7. package/template-admin-server/.nvmrc +1 -0
  8. package/template-admin-server/.vscode/extensions.json +6 -0
  9. package/template-admin-server/.vscode/settings.json +4 -0
  10. package/template-admin-server/README.md +73 -0
  11. package/template-admin-server/_gitignore +15 -0
  12. package/template-admin-server/boot.mjs +11 -0
  13. package/template-admin-server/package.json +60 -0
  14. package/template-admin-server/rome.json +22 -0
  15. package/template-admin-server/src/config/config.default.ts +56 -0
  16. package/template-admin-server/src/configuration.ts +47 -0
  17. package/template-admin-server/src/controller/admin.controller.ts +397 -0
  18. package/template-admin-server/src/controller/api.controller.ts +98 -0
  19. package/template-admin-server/src/controller/base.controller.ts +70 -0
  20. package/template-admin-server/src/controller/dto/api.ts +47 -0
  21. package/template-admin-server/src/controller/dto/index.ts +36 -0
  22. package/template-admin-server/src/controller/dto/menu.ts +41 -0
  23. package/template-admin-server/src/controller/dto/role.ts +41 -0
  24. package/template-admin-server/src/controller/dto/user.ts +52 -0
  25. package/template-admin-server/src/controller/menu.controller.ts +138 -0
  26. package/template-admin-server/src/controller/role.controller.ts +116 -0
  27. package/template-admin-server/src/controller/user.controller.ts +108 -0
  28. package/template-admin-server/src/entities/Api.ts +29 -0
  29. package/template-admin-server/src/entities/BaseCreate.ts +30 -0
  30. package/template-admin-server/src/entities/Menu.ts +39 -0
  31. package/template-admin-server/src/entities/Role.ts +36 -0
  32. package/template-admin-server/src/entities/User.ts +35 -0
  33. package/template-admin-server/src/entities/index.ts +10 -0
  34. package/template-admin-server/src/filter/default.filter.ts +22 -0
  35. package/template-admin-server/src/filter/notfound.filter.ts +23 -0
  36. package/template-admin-server/src/middleware/helper.middleware.ts +28 -0
  37. package/template-admin-server/src/middleware/index.ts +9 -0
  38. package/template-admin-server/src/middleware/jwt.middleware.ts +32 -0
  39. package/template-admin-server/src/middleware/report.middleware.ts +26 -0
  40. package/template-admin-server/src/service/api.service.ts +174 -0
  41. package/template-admin-server/src/service/basic.ts +118 -0
  42. package/template-admin-server/src/service/index.ts +10 -0
  43. package/template-admin-server/src/service/menu.service.ts +139 -0
  44. package/template-admin-server/src/service/role.service.ts +286 -0
  45. package/template-admin-server/src/service/user.service.ts +124 -0
  46. package/template-admin-server/src/strategy/jwt.strategy.ts +26 -0
  47. package/template-admin-server/src/types/index.ts +42 -0
  48. package/template-admin-server/src/types/types.d.ts +31 -0
  49. package/template-admin-server/tsconfig.json +24 -0
  50. package/template-vue-admin/.vscode/extensions.json +10 -0
  51. package/template-vue-admin/.vscode/list-add.code-snippets +108 -0
  52. package/template-vue-admin/.vscode/list-export.code-snippets +72 -0
  53. package/template-vue-admin/.vscode/list.code-snippets +61 -0
  54. package/template-vue-admin/.vscode/settings.json +7 -0
  55. package/template-vue-admin/Dockerfile +42 -0
  56. package/template-vue-admin/README.md +75 -0
  57. package/template-vue-admin/_env +8 -0
  58. package/template-vue-admin/_gitignore +30 -0
  59. package/template-vue-admin/boot.mjs +16 -0
  60. package/template-vue-admin/build/custom-plugin.ts +30 -0
  61. package/template-vue-admin/build/index.ts +7 -0
  62. package/template-vue-admin/build/plugins.ts +59 -0
  63. package/template-vue-admin/config/.devrc +2 -0
  64. package/template-vue-admin/config/.onlinerc +2 -0
  65. package/template-vue-admin/config/.testrc +2 -0
  66. package/template-vue-admin/index.html +21 -0
  67. package/template-vue-admin/nitro.config.ts +19 -0
  68. package/template-vue-admin/package.json +50 -0
  69. package/template-vue-admin/plugins/env.ts +26 -0
  70. package/template-vue-admin/public/vite.svg +1 -0
  71. package/template-vue-admin/rome.json +26 -0
  72. package/template-vue-admin/routes/api/[...all].ts +49 -0
  73. package/template-vue-admin/routes/get/env.ts +18 -0
  74. package/template-vue-admin/src/App.vue +14 -0
  75. package/template-vue-admin/src/apis/delete.ts +36 -0
  76. package/template-vue-admin/src/apis/get.ts +84 -0
  77. package/template-vue-admin/src/apis/index.ts +10 -0
  78. package/template-vue-admin/src/apis/patch.ts +79 -0
  79. package/template-vue-admin/src/apis/post.ts +77 -0
  80. package/template-vue-admin/src/assets/img/login_background.jpg +0 -0
  81. package/template-vue-admin/src/auto-components.d.ts +36 -0
  82. package/template-vue-admin/src/auto-imports.d.ts +282 -0
  83. package/template-vue-admin/src/layouts/blank.vue +9 -0
  84. package/template-vue-admin/src/layouts/default/components/Link.vue +23 -0
  85. package/template-vue-admin/src/layouts/default/components/Logo.vue +20 -0
  86. package/template-vue-admin/src/layouts/default/components/Menu.vue +54 -0
  87. package/template-vue-admin/src/layouts/default/components/NavSearch.vue +52 -0
  88. package/template-vue-admin/src/layouts/default/components/ScrollPane.vue +79 -0
  89. package/template-vue-admin/src/layouts/default/components/TagsView.vue +137 -0
  90. package/template-vue-admin/src/layouts/default/components/TopMenu.vue +21 -0
  91. package/template-vue-admin/src/layouts/default/components/UserCenter.vue +50 -0
  92. package/template-vue-admin/src/layouts/default/index.vue +95 -0
  93. package/template-vue-admin/src/main.ts +44 -0
  94. package/template-vue-admin/src/modules/1-router.ts +66 -0
  95. package/template-vue-admin/src/modules/2-pinia.ts +10 -0
  96. package/template-vue-admin/src/modules/3-net.ts +75 -0
  97. package/template-vue-admin/src/modules/4-auth.ts +126 -0
  98. package/template-vue-admin/src/shims.d.ts +12 -0
  99. package/template-vue-admin/src/stores/index.ts +9 -0
  100. package/template-vue-admin/src/stores/local/index.ts +23 -0
  101. package/template-vue-admin/src/stores/session/index.ts +63 -0
  102. package/template-vue-admin/src/stores/tags.ts +109 -0
  103. package/template-vue-admin/src/typings/global.d.ts +70 -0
  104. package/template-vue-admin/src/typings/index.ts +50 -0
  105. package/template-vue-admin/src/views/403.vue +32 -0
  106. package/template-vue-admin/src/views/[...all_404].vue +556 -0
  107. package/template-vue-admin/src/views/base/login.vue +193 -0
  108. package/template-vue-admin/src/views/dashboard/[name].vue +23 -0
  109. package/template-vue-admin/src/views/index.vue +19 -0
  110. package/template-vue-admin/src/views/system/api.vue +161 -0
  111. package/template-vue-admin/src/views/system/hooks/useRole.ts +286 -0
  112. package/template-vue-admin/src/views/system/menuList.vue +195 -0
  113. package/template-vue-admin/src/views/system/role.vue +132 -0
  114. package/template-vue-admin/src/views/system/user.vue +193 -0
  115. package/template-vue-admin/src/vite-env.d.ts +52 -0
  116. package/template-vue-admin/tsconfig.json +21 -0
  117. package/template-vue-admin/tsconfig.node.json +9 -0
  118. package/template-vue-admin/unocss.config.ts +47 -0
  119. package/template-vue-admin/vite.config.ts +32 -0
  120. package/template-vue-thin/package.json +14 -13
  121. package/template-vue-thin/vite.config.ts +1 -6
@@ -0,0 +1,556 @@
1
+ <!--
2
+ * @Author: zhangyang
3
+ * @Date: 2020-12-03 15:02:28
4
+ * @LastEditTime: 2023-01-09 09:24:29
5
+ * @Description: 404
6
+ -->
7
+ <route lang="yaml">
8
+ meta:
9
+ title: 页面不存在
10
+ layout: 'blank'
11
+ </route>
12
+ <template>
13
+ <div>
14
+ <div class="g-container">
15
+ <div class="rail">
16
+ <div class="stamp four">4</div>
17
+ <div class="stamp zero">0</div>
18
+ <div class="stamp four">4</div>
19
+ <div class="stamp zero">0</div>
20
+ <div class="stamp four">4</div>
21
+ <div class="stamp zero">0</div>
22
+ <div class="stamp four">4</div>
23
+ <div class="stamp zero">0</div>
24
+ <div class="stamp four">4</div>
25
+ <div class="stamp zero">0</div>
26
+ <div class="stamp four">4</div>
27
+ <div class="stamp zero">0</div>
28
+ <div class="stamp four">4</div>
29
+ <div class="stamp zero">0</div>
30
+ <div class="stamp four">4</div>
31
+ <div class="stamp zero">0</div>
32
+ <div class="stamp four">4</div>
33
+ <div class="stamp zero">0</div>
34
+ <div class="stamp four">4</div>
35
+ <div class="stamp zero">0</div>
36
+ </div>
37
+ <div class="world">
38
+ <div class="forward">
39
+ <div class="box">
40
+ <div class="wall"></div>
41
+ <div class="wall"></div>
42
+ <div class="wall"></div>
43
+ <div class="wall"></div>
44
+ <div class="wall"></div>
45
+ <div class="wall"></div>
46
+ </div>
47
+ </div>
48
+ </div>
49
+ </div>
50
+ <div class="bullshit">
51
+ <div class="bullshit__oops">似乎出了什么问题!</div>
52
+ <div class="bullshit__headline">{{ tips }}</div>
53
+ <div class="bullshit__info">请仔细检查链接是否正确,点击按钮可返回上页</div>
54
+ <a class="bullshit__return-home" @click.prevent="goBack">返回上个页面</a>
55
+ </div>
56
+ </div>
57
+ </template>
58
+
59
+ <script lang="ts" setup>
60
+ withDefaults(defineProps<{ tips?: string; }>(), {
61
+ tips: '页面不存在......'
62
+ });
63
+ const router = useRouter();
64
+ const goBack = () => router.back();
65
+
66
+ </script>
67
+ <style lang="less" scoped>
68
+ body {
69
+ background: #fff;
70
+ height: 100vh;
71
+ overflow: hidden;
72
+ display: flex;
73
+ flex-wrap: wrap;
74
+ font-family: "Anton", sans-serif;
75
+ align-items: flex-start;
76
+ perspective: 1000px;
77
+ }
78
+
79
+ body>a {
80
+ opacity: 0;
81
+ position: fixed;
82
+ bottom: -100px;
83
+ left: -100px;
84
+ }
85
+
86
+ div {
87
+ transform-style: preserve-3d;
88
+ }
89
+
90
+ .g-container {
91
+ display: flex;
92
+ width: 100vw;
93
+ height: 30vh;
94
+ justify-content: center;
95
+ align-items: center;
96
+ /* perspective: 1000px; */
97
+ }
98
+
99
+ .rail {
100
+ position: absolute;
101
+ width: 100%;
102
+ height: 100%;
103
+ display: flex;
104
+ justify-content: center;
105
+ align-items: center;
106
+ transform: rotateX(-30deg) rotateY(-30deg);
107
+ }
108
+
109
+ .rail .stamp {
110
+ position: absolute;
111
+ width: 200px;
112
+ height: 200px;
113
+ display: flex;
114
+ justify-content: center;
115
+ align-items: center;
116
+ background: #333;
117
+ color: #fff;
118
+ font-size: 7rem;
119
+ }
120
+
121
+ .rail .stamp:nth-child(1) {
122
+ -webkit-animation: stampSlide 40000ms -2300ms linear infinite;
123
+ animation: stampSlide 40000ms -2300ms linear infinite;
124
+ }
125
+
126
+ .rail .stamp:nth-child(2) {
127
+ -webkit-animation: stampSlide 40000ms -4300ms linear infinite;
128
+ animation: stampSlide 40000ms -4300ms linear infinite;
129
+ }
130
+
131
+ .rail .stamp:nth-child(3) {
132
+ -webkit-animation: stampSlide 40000ms -6300ms linear infinite;
133
+ animation: stampSlide 40000ms -6300ms linear infinite;
134
+ }
135
+
136
+ .rail .stamp:nth-child(4) {
137
+ -webkit-animation: stampSlide 40000ms -8300ms linear infinite;
138
+ animation: stampSlide 40000ms -8300ms linear infinite;
139
+ }
140
+
141
+ .rail .stamp:nth-child(5) {
142
+ -webkit-animation: stampSlide 40000ms -10300ms linear infinite;
143
+ animation: stampSlide 40000ms -10300ms linear infinite;
144
+ }
145
+
146
+ .rail .stamp:nth-child(6) {
147
+ -webkit-animation: stampSlide 40000ms -12300ms linear infinite;
148
+ animation: stampSlide 40000ms -12300ms linear infinite;
149
+ }
150
+
151
+ .rail .stamp:nth-child(7) {
152
+ -webkit-animation: stampSlide 40000ms -14300ms linear infinite;
153
+ animation: stampSlide 40000ms -14300ms linear infinite;
154
+ }
155
+
156
+ .rail .stamp:nth-child(8) {
157
+ -webkit-animation: stampSlide 40000ms -16300ms linear infinite;
158
+ animation: stampSlide 40000ms -16300ms linear infinite;
159
+ }
160
+
161
+ .rail .stamp:nth-child(9) {
162
+ -webkit-animation: stampSlide 40000ms -18300ms linear infinite;
163
+ animation: stampSlide 40000ms -18300ms linear infinite;
164
+ }
165
+
166
+ .rail .stamp:nth-child(10) {
167
+ -webkit-animation: stampSlide 40000ms -20300ms linear infinite;
168
+ animation: stampSlide 40000ms -20300ms linear infinite;
169
+ }
170
+
171
+ .rail .stamp:nth-child(11) {
172
+ -webkit-animation: stampSlide 40000ms -22300ms linear infinite;
173
+ animation: stampSlide 40000ms -22300ms linear infinite;
174
+ }
175
+
176
+ .rail .stamp:nth-child(12) {
177
+ -webkit-animation: stampSlide 40000ms -24300ms linear infinite;
178
+ animation: stampSlide 40000ms -24300ms linear infinite;
179
+ }
180
+
181
+ .rail .stamp:nth-child(13) {
182
+ -webkit-animation: stampSlide 40000ms -26300ms linear infinite;
183
+ animation: stampSlide 40000ms -26300ms linear infinite;
184
+ }
185
+
186
+ .rail .stamp:nth-child(14) {
187
+ -webkit-animation: stampSlide 40000ms -28300ms linear infinite;
188
+ animation: stampSlide 40000ms -28300ms linear infinite;
189
+ }
190
+
191
+ .rail .stamp:nth-child(15) {
192
+ -webkit-animation: stampSlide 40000ms -30300ms linear infinite;
193
+ animation: stampSlide 40000ms -30300ms linear infinite;
194
+ }
195
+
196
+ .rail .stamp:nth-child(16) {
197
+ -webkit-animation: stampSlide 40000ms -32300ms linear infinite;
198
+ animation: stampSlide 40000ms -32300ms linear infinite;
199
+ }
200
+
201
+ .rail .stamp:nth-child(17) {
202
+ -webkit-animation: stampSlide 40000ms -34300ms linear infinite;
203
+ animation: stampSlide 40000ms -34300ms linear infinite;
204
+ }
205
+
206
+ .rail .stamp:nth-child(18) {
207
+ -webkit-animation: stampSlide 40000ms -36300ms linear infinite;
208
+ animation: stampSlide 40000ms -36300ms linear infinite;
209
+ }
210
+
211
+ .rail .stamp:nth-child(19) {
212
+ -webkit-animation: stampSlide 40000ms -38300ms linear infinite;
213
+ animation: stampSlide 40000ms -38300ms linear infinite;
214
+ }
215
+
216
+ .rail .stamp:nth-child(20) {
217
+ -webkit-animation: stampSlide 40000ms -40300ms linear infinite;
218
+ animation: stampSlide 40000ms -40300ms linear infinite;
219
+ }
220
+
221
+ @-webkit-keyframes stampSlide {
222
+ 0% {
223
+ transform: rotateX(90deg) rotateZ(-90deg) translateZ(-200px) translateY(130px);
224
+ }
225
+
226
+ 100% {
227
+ transform: rotateX(90deg) rotateZ(-90deg) translateZ(-200px) translateY(-3870px);
228
+ }
229
+ }
230
+
231
+ @keyframes stampSlide {
232
+ 0% {
233
+ transform: rotateX(90deg) rotateZ(-90deg) translateZ(-200px) translateY(130px);
234
+ }
235
+
236
+ 100% {
237
+ transform: rotateX(90deg) rotateZ(-90deg) translateZ(-200px) translateY(-3870px);
238
+ }
239
+ }
240
+
241
+ .world {
242
+ transform: rotateX(-30deg) rotateY(-30deg);
243
+ }
244
+
245
+ .world .forward {
246
+ position: absolute;
247
+ -webkit-animation: slide 2000ms linear infinite;
248
+ animation: slide 2000ms linear infinite;
249
+ }
250
+
251
+ .world .box {
252
+ width: 200px;
253
+ height: 200px;
254
+ transform-origin: 100% 100%;
255
+ -webkit-animation: roll 2000ms cubic-bezier(1, 0.01, 1, 1) infinite;
256
+ animation: roll 2000ms cubic-bezier(1, 0.01, 1, 1) infinite;
257
+ }
258
+
259
+ .world .box .wall {
260
+ position: absolute;
261
+ width: 200px;
262
+ height: 200px;
263
+ background: rgba(0, 0, 0, 0.5);
264
+ border: 1px solid #fafafa;
265
+ box-sizing: border-box;
266
+ }
267
+
268
+ .world .box .wall::before {
269
+ content: "";
270
+ position: absolute;
271
+ width: 100%;
272
+ height: 100%;
273
+ display: flex;
274
+ justify-content: center;
275
+ align-items: center;
276
+ color: #fff;
277
+ font-size: 7rem;
278
+ }
279
+
280
+ .world .box .wall:nth-child(1) {
281
+ transform: translateZ(100px);
282
+ }
283
+
284
+ .world .box .wall:nth-child(2) {
285
+ transform: rotateX(180deg) translateZ(100px);
286
+ }
287
+
288
+ .world .box .wall:nth-child(3) {
289
+ transform: rotateX(90deg) translateZ(100px);
290
+ }
291
+
292
+ .world .box .wall:nth-child(3)::before {
293
+ transform: rotateX(180deg) rotateZ(90deg) translateZ(-1px);
294
+ -webkit-animation: zeroFour 4000ms -2000ms linear infinite;
295
+ animation: zeroFour 4000ms -2000ms linear infinite;
296
+ }
297
+
298
+ .world .box .wall:nth-child(4) {
299
+ transform: rotateX(-90deg) translateZ(100px);
300
+ }
301
+
302
+ .world .box .wall:nth-child(4)::before {
303
+ transform: rotateX(180deg) rotateZ(-90deg) translateZ(-1px);
304
+ -webkit-animation: zeroFour 4000ms -2000ms linear infinite;
305
+ animation: zeroFour 4000ms -2000ms linear infinite;
306
+ }
307
+
308
+ .world .box .wall:nth-child(5) {
309
+ transform: rotateY(90deg) translateZ(100px);
310
+ }
311
+
312
+ .world .box .wall:nth-child(5)::before {
313
+ transform: rotateX(180deg) translateZ(-1px);
314
+ -webkit-animation: zeroFour 4000ms linear infinite;
315
+ animation: zeroFour 4000ms linear infinite;
316
+ }
317
+
318
+ .world .box .wall:nth-child(6) {
319
+ transform: rotateY(-90deg) translateZ(100px);
320
+ }
321
+
322
+ .world .box .wall:nth-child(6)::before {
323
+ transform: rotateX(180deg) rotateZ(180deg) translateZ(-1px);
324
+ -webkit-animation: zeroFour 4000ms linear infinite;
325
+ animation: zeroFour 4000ms linear infinite;
326
+ }
327
+
328
+ @-webkit-keyframes zeroFour {
329
+ 0% {
330
+ content: "4";
331
+ }
332
+
333
+ 100% {
334
+ content: "0";
335
+ }
336
+ }
337
+
338
+ @keyframes zeroFour {
339
+ 0% {
340
+ content: "4";
341
+ }
342
+
343
+ 100% {
344
+ content: "0";
345
+ }
346
+ }
347
+
348
+ @-webkit-keyframes roll {
349
+ 0% {
350
+ transform: rotateZ(0deg);
351
+ }
352
+
353
+ 85% {
354
+ transform: rotateZ(90deg);
355
+ }
356
+
357
+ 87% {
358
+ transform: rotateZ(88deg);
359
+ }
360
+
361
+ 90% {
362
+ transform: rotateZ(90deg);
363
+ }
364
+
365
+ 100% {
366
+ transform: rotateZ(90deg);
367
+ }
368
+ }
369
+
370
+ @keyframes roll {
371
+ 0% {
372
+ transform: rotateZ(0deg);
373
+ }
374
+
375
+ 85% {
376
+ transform: rotateZ(90deg);
377
+ }
378
+
379
+ 87% {
380
+ transform: rotateZ(88deg);
381
+ }
382
+
383
+ 90% {
384
+ transform: rotateZ(90deg);
385
+ }
386
+
387
+ 100% {
388
+ transform: rotateZ(90deg);
389
+ }
390
+ }
391
+
392
+ @-webkit-keyframes slide {
393
+ 0% {
394
+ transform: translateX(0);
395
+ }
396
+
397
+ 100% {
398
+ transform: translateX(-200px);
399
+ }
400
+ }
401
+
402
+ @keyframes slide {
403
+ 0% {
404
+ transform: translateX(0);
405
+ }
406
+
407
+ 100% {
408
+ transform: translateX(-200px);
409
+ }
410
+ }
411
+
412
+ footer {
413
+ position: fixed;
414
+ left: 0;
415
+ right: 0;
416
+ bottom: 0;
417
+ height: 32px;
418
+ color: #666;
419
+ font-size: 12px;
420
+ text-align: center;
421
+ }
422
+
423
+ .g-goto {
424
+ width: 100vw;
425
+ padding: 12px 0;
426
+ }
427
+
428
+ .g-goto p {
429
+ font-size: 14px;
430
+ text-align: center;
431
+ color: #999;
432
+ padding: 0 12px;
433
+ margin-bottom: 24px;
434
+ }
435
+
436
+ .g-btn-box {
437
+ /* width: 600px; */
438
+ display: flex;
439
+ flex-wrap: wrap;
440
+ margin: 0 auto;
441
+ justify-content: center;
442
+ }
443
+
444
+ .svg-border-animation {
445
+ position: relative;
446
+ width: 80px;
447
+ height: 32px;
448
+ margin: 12px;
449
+ }
450
+
451
+ .hover-text {
452
+ position: absolute;
453
+ line-height: 32px;
454
+ width: 80px;
455
+ top: 0;
456
+ color: #333;
457
+ font-size: 14px;
458
+ text-align: center;
459
+ cursor: pointer;
460
+ transition: all .4s;
461
+ }
462
+
463
+ .hover-text:active {
464
+ background: #3F51B50b;
465
+ }
466
+
467
+ .shape {
468
+ fill: transparent;
469
+ stroke-width: 2px;
470
+ stroke: #333;
471
+ stroke-dasharray: 30 150;
472
+ stroke-dashoffset: 42;
473
+ }
474
+
475
+ .svg-border-animation:hover .hover-text {
476
+ transition: 0.4s;
477
+ color: #3F51B5;
478
+ }
479
+
480
+ .svg-border-animation:hover .shape {
481
+ animation: draw 0.4s linear forwards;
482
+ }
483
+
484
+ @keyframes draw {
485
+ 0% {
486
+ stroke-dasharray: 30 150;
487
+ stroke-dashoffset: 42;
488
+ stroke-width: 2px;
489
+ }
490
+
491
+ 100% {
492
+ stroke-dasharray: 224;
493
+ stroke-dashoffset: 0;
494
+ stroke-width: 2px;
495
+ stroke: #3F51B5;
496
+ }
497
+ }
498
+
499
+ .bullshit {
500
+ @apply relative float-left ml-10 top-50 w-300px overflow-hidden;
501
+
502
+ @media (min-width: 768px) {
503
+ @apply float-right -top-32 mr-52;
504
+ }
505
+
506
+ &__oops {
507
+ @apply text-3xl font-bold opacity-0 mb-4;
508
+ color: #1482f0;
509
+ animation-name: slideUp;
510
+ animation-duration: 0.5s;
511
+ animation-fill-mode: forwards;
512
+ }
513
+
514
+ &__headline {
515
+ @apply text-xl font-bold opacity-0 mb-2;
516
+ color: #222;
517
+ animation-name: slideUp;
518
+ animation-duration: 0.5s;
519
+ animation-delay: 0.1s;
520
+ animation-fill-mode: forwards;
521
+ }
522
+
523
+ &__info {
524
+ @apply text-sm opacity-0 mb-6;
525
+ color: grey;
526
+ animation-name: slideUp;
527
+ animation-duration: 0.5s;
528
+ animation-delay: 0.2s;
529
+ animation-fill-mode: forwards;
530
+ }
531
+
532
+ &__return-home {
533
+ @apply block float-left w-28 h-10 rounded-3xl text-center font-bold opacity-0 cursor-pointer;
534
+ background: #1482f0;
535
+ color: #ffffff;
536
+ font-size: 14px;
537
+ line-height: 36px;
538
+ animation-name: slideUp;
539
+ animation-duration: 0.5s;
540
+ animation-delay: 0.3s;
541
+ animation-fill-mode: forwards;
542
+ }
543
+
544
+ @keyframes slideUp {
545
+ 0% {
546
+ transform: translateY(60px);
547
+ opacity: 0;
548
+ }
549
+
550
+ 100% {
551
+ transform: translateY(0);
552
+ opacity: 1;
553
+ }
554
+ }
555
+ }
556
+ </style>