diff --git a/Art/lukas2485-movingAround/index.html b/Art/lukas2485-movingAround/index.html deleted file mode 100644 index bb361febe..000000000 --- a/Art/lukas2485-movingAround/index.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - Document - - - - -
-
-
-
- - - - \ No newline at end of file diff --git a/Art/lukas2485-movingAround/meta.json b/Art/lukas2485-movingAround/meta.json deleted file mode 100644 index b1bc26a2a..000000000 --- a/Art/lukas2485-movingAround/meta.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "artName": "Moving Around", - "githubHandle": "lukas2485" -} \ No newline at end of file diff --git a/Art/lukas2485-movingAround/style.css b/Art/lukas2485-movingAround/style.css deleted file mode 100644 index f8c5cd6c7..000000000 --- a/Art/lukas2485-movingAround/style.css +++ /dev/null @@ -1,58 +0,0 @@ -.box { - width: 500px; - height: 300px; - background-color: black; - padding: 15px; - } - - #bubble { - height: 100px; - width: 100px; - border-radius: 50%; - background-color: lightblue; - animation: - pulse 2s ease infinite alternate, - nudge 6s linear infinite alternate; - } - - #line { - height: 100%; - width: 5px; - background-color: lightblue; - animation: - nudge 6s linear infinite alternate, - rotate 4s ease infinite; - } - - @keyframes rotate { - 50% { - transform: rotate(0); - } - - 80% { - transform: rotate(-70deg); - } - } - - - @keyframes pulse { - 0%, 100% { - background-color: red; - } - 50% { - background-color: orange; - } - } - - @keyframes nudge { - - 50% { - transform: translate(320px, 0); - } - - 100% { - transform: translate(-30px, 0); - } - } - - \ No newline at end of file