summaryrefslogtreecommitdiffstats
path: root/dna.css
blob: a3e810d19e3bde6b148fb667f302214fbbdfc6ee (plain)
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
.wrapper{
    position: relative;
    margin-top: 10%;
    margin-left: 5%;
    margin-bottom: 5%;
}

.line{
    position: absolute;
    top: 0px;
    width: 4px;
    height: 5px;
    background: var(--dark-blue-trans);
    z-index: -2;
}

.circle{
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    box-shadow: 0 0 .5em .1em #fff;
    background: var(--light-blue-trans);
    z-index: -2;
}

.circle-top{
    top: 0px;
    left: -3.5px;
}

.circle-bottom{
    bottom: 0px;
    left: -3.5px;
}

.dot{
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    left: -1.5px;
}

.line1{
    margin-left: 0%;
    animation: twist 5s cubic-bezier(0.150, 0, 0.205, 1) infinite;
}


.line2{
    margin-left: 5%;
    animation: twist 5s .05s cubic-bezier(0.150, 0, 0.205, 1) infinite;
}

.line3{
    margin-left: 10%;
    animation: twist 5s .1s cubic-bezier(0.150, 0, 0.205, 1) infinite;
}

.line4{
    margin-left: 15%;
    animation: twist 5s .15s cubic-bezier(0.150, 0, 0.205, 1) infinite;
}

.line5{
    margin-left: 20%;
    animation: twist 5s .2s cubic-bezier(0.150, 0, 0.205, 1) infinite;
}

.line6{
    margin-left: 25%;
    animation: twist 5s .25s cubic-bezier(0.150, 0, 0.205, 1) infinite;
}

.line7{
    margin-left: 30%;
    animation: twist 5s .3s cubic-bezier(0.150, 0, 0.205, 1) infinite;
}

.line8{
    margin-left: 35%;
    animation: twist 5s .35s cubic-bezier(0.150, 0, 0.205, 1) infinite;
}

.line9{
    margin-left: 40%;
    animation: twist 5s .4s cubic-bezier(0.150, 0, 0.205, 1) infinite;
}

.line10{
    margin-left: 45%;
    animation: twist 5s .45s cubic-bezier(0.150, 0, 0.205, 1) infinite;
}

.line11{
    margin-left: 50%;
    animation: twist 5s .5s cubic-bezier(0.150, 0, 0.205, 1) infinite;
}

.line12{
    margin-left: 55%;
    animation: twist 5s .55s cubic-bezier(0.150, 0, 0.205, 1) infinite;
}

.line13{
    margin-left: 60%;
    animation: twist 5s .6s cubic-bezier(0.150, 0, 0.205, 1) infinite;
}

.line14{
    margin-left: 65%;
    animation: twist 5s .65s cubic-bezier(0.150, 0, 0.205, 1) infinite;
}

.line15{
    margin-left: 70%;
    animation: twist 5s .7s cubic-bezier(0.150, 0, 0.205, 1) infinite;
}

.line16{
    margin-left: 75%;
    animation: twist 5s .75s cubic-bezier(0.150, 0, 0.205, 1) infinite;
}

.line17{
    margin-left: 80%;
    animation: twist 5s .8s cubic-bezier(0.150, 0, 0.205, 1) infinite;
}

.line18{
    margin-left: 85%;
    animation: twist 5s .85s cubic-bezier(0.150, 0, 0.205, 1) infinite;
}

.line19{
    margin-left: 90%;
    animation: twist 5s .9s cubic-bezier(0.150, 0, 0.205, 1) infinite;
}

.line20{
    margin-left: 95%;
    animation: twist 5s .95s cubic-bezier(0.150, 0, 0.205, 1) infinite;
}

@keyframes twist{
    0%{height: 4px; top: 0px; left: 0px; transform: rotate(-720deg)}
    50%{height: 200px; top: -100px; left: 5px;}
    100%{height: 4px; top: 0px; left: 0px; transform: rotate(0deg);}
}