-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (90 loc) · 1.64 KB
/
Copy pathstyle.css
File metadata and controls
106 lines (90 loc) · 1.64 KB
1
2
3
4
5
6
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
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
104
105
106
@font-face {
font-family: 'ra-inet';
src: url('assets/C&C Red Alert [INET].ttf');
}
@font-face {
font-family: 'ra-lan';
src: url('assets/C&C Red Alert [INET].ttf');
}
@keyframes conveyorBelt {
from {
stroke-dashoffset: 0;
}
to {
stroke-dashoffset: -100;
}
}
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'ra-lan';
}
html,
body {
overflow: hidden;
}
#drawflow {
width: 100vw;
border: 1px solid #ccc;
background: lightgray;
height: 100vh;
position: absolute;
}
.drawflow-node {
border: 1px solid #999;
width: fit-content !important;
transition: background-image 0.2s ease-in-out;
}
.drawflow .connection .main-path {
stroke-dasharray: 10;
animation: conveyorBelt 5s linear infinite;
}
details summary {
cursor: pointer;
}
.float button,
.float input,
.float select {
width: 25vw;
text-align: left;
padding: 10px;
margin-top: 10px;
display: block;
}
.floating-text {
position: absolute;
font-size: 15px;
animation: floatUp 1.5s ease-out forwards;
pointer-events: none;
}
@keyframes floatUp {
0% {
transform: translateY(0) scale(1);
opacity: 1;
}
100% {
transform: translateY(-50px) scale(1.2);
opacity: 0;
}
}
.dock {
background: white;
position: absolute;
z-index: 10;
padding: 10px;
border: darkgray solid 1px;
margin: 10px;
}
.float {
position: absolute;
z-index: 10;
padding: 10px;
border: darkgray solid 1px;
background: white;
margin: 10px;
margin-top: 68px;
}
.dock button {
padding: 5px;
}