📝 Added sandbox (code sketchbook)
This commit is contained in:
parent
b475595f7f
commit
b5daf18b1a
142 changed files with 100702 additions and 0 deletions
25
sandbox/codepens/circuit_tests/css/styles2.css
Normal file
25
sandbox/codepens/circuit_tests/css/styles2.css
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
/* Taken from https://www.demo2s.com/html-css/css-flowing-circuit-animation.html */
|
||||
|
||||
.bar {
|
||||
position: absolute;
|
||||
margin: 0em 0em 0em 0em;
|
||||
background: orange;
|
||||
bottom:0;
|
||||
left:50%;
|
||||
width:5px;
|
||||
height:60%;
|
||||
animation-name:zap2;
|
||||
animation-delay:.2s;
|
||||
animation-duration:2s;
|
||||
}
|
||||
|
||||
@keyframes zap2 {
|
||||
0% {
|
||||
height:0;
|
||||
}
|
||||
|
||||
100% {
|
||||
height:60%;
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue