Skip to content

Commit

Permalink
Merge branch 'master' into core/revamp-proposition
Browse files Browse the repository at this point in the history
  • Loading branch information
sophiabrandt authored Oct 26, 2023
2 parents 43e786d + 62d050b commit 4d2a191
Show file tree
Hide file tree
Showing 48 changed files with 2,797 additions and 303 deletions.
Binary file added Art/Bhavna2003-2/Rainbow animation.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions Art/Bhavna2003-2/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css" />
<title>Rainbow Animation Loader</title>
</head>
<body>
<div class="center">
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
</body>
</html>
83 changes: 83 additions & 0 deletions Art/Bhavna2003-2/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
body {
margin: 0;
padding: 0;
background: #d682fa;
}
.center {
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
}
ul {
margin: 0;
padding: 0;
position: relative;
width: 400px;
height: 240px;
overflow: hidden;
border-bottom: 1px solid rgba(0,0,0,.2);
}
ul li{
list-style: none;
border-radius: 50%;
border: 15px solid #000;
position: absolute;
top: 100%;
left: 50%;
border-bottom-color: transparent !important;
border-left-color: transparent !important;
box-shadow: 0 0 10px rgba(0,0,0,.5);
animation: animate 2s infinite alternate;
transform: translate(-50%, -50%);
}
ul li:nth-child(1){
width: 60px;
height: 60px;
border-color: #fd6e6e;
animation-delay: .1s;
}
ul li:nth-child(2){
width: 90px;
height: 90px;
border-color: #fca34a;
animation-delay: .2s;
}
ul li:nth-child(3){
width: 120px;
height: 120px;
border-color: #fafa68;
animation-delay: .3s;
}
ul li:nth-child(4){
width: 150px;
height: 150px;
border-color: #76f876;
animation-delay: .4s;
}
ul li:nth-child(5){
width: 180px;
height: 180px;
border-color: #7c7cfa;
animation-delay: .5s;
}
ul li:nth-child(6){
width: 210px;
height: 210px;
border-color: #7e539c;
animation-delay: .6s;
}
ul li:nth-child(7){
width: 240px;
height: 240px;
border-color: #d682fa;
animation-delay: .7s;
}
@keyframes animate {
0%{
transform: translate(-50%, -50%) rotate(-45deg);
}
100%{
transform: translate(-50%, -50%) rotate(315deg);
}
}
Binary file added Art/Milosz-Dev/Milosz-Dev.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions Art/Milosz-Dev/circle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions Art/Milosz-Dev/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Milosz Dev Animation</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Georama&family=Montserrat&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<a href="index.html">
<img class="text-circle text-uppercase p-absolute" src="circle.svg" alt="Circle Animation">
</a>
</body>
</html>
33 changes: 33 additions & 0 deletions Art/Milosz-Dev/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
body {
background-color: #252d39;
overflow: hidden;
}
.text-circle {
animation-name: circleRotate;
animation-duration: 12s;
animation-iteration-count: infinite;
animation-timing-function: linear;
bottom: 25px;
right: 25px;
font-family: 'Georama', sans-serif;
line-height: 1.5;
fill: #86c33a;
}
textPath {
font-family: 'Georama', sans-serif;
}
.text-uppercase {
text-transform: uppercase;
}
.p-absolute {
position: absolute;
}
@keyframes circleRotate {
0% {
transform: rotate(360deg);
}

100% {
transform: rotate(0);
}
}
30 changes: 15 additions & 15 deletions Art/Molina-Daniel/index.html
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Psychedelic Cube</title>
</head>
<body>
</head>
<body>
<div class="cube-container">
<div class="cube">
<div class="face"></div>
<div class="face"></div>
<div class="face"></div>
<div class="face"></div>
<div class="face"></div>
<div class="face"></div>
</div>
<div class="cube">
<div class="face"></div>
<div class="face"></div>
<div class="face"></div>
<div class="face"></div>
<div class="face"></div>
<div class="face"></div>
</div>
</div>
</body>
</body>
</html>
120 changes: 39 additions & 81 deletions Art/Molina-Daniel/styles.css
Original file line number Diff line number Diff line change
@@ -1,103 +1,61 @@
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #111;
perspective: 800px;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #111;
perspective: 800px;
}

.cube-container {
position: relative;
width: 200px;
height: 200px;
animation: rotate 10s linear infinite, pulse 2s alternate infinite;
position: relative;
width: 200px;
height: 200px;
animation: rotate 10s linear infinite, pulse 2s alternate infinite;
}

.cube {
position: absolute;
width: 100%;
height: 100%;
transform-style: preserve-3d;
animation: spin 10s linear infinite;
position: absolute;
width: 100%;
height: 100%;
transform-style: preserve-3d;
animation: spin 10s linear infinite;
}

.face {
position: absolute;
width: 200px;
height: 200px;
border: 1px solid #fff;
opacity: 0.8;
transition: transform 1s ease-in-out;
position: absolute;
width: 200px;
height: 200px;
border: 1px solid #fff;
opacity: 0.8;
transition: transform 1s ease-in-out;
}

.face:nth-child(1) {
transform: translateZ(100px);
background: #3498db;
}
.face:nth-child(2) {
transform: rotateY(90deg) translateZ(100px);
background: #e74c3c;
}
.face:nth-child(3) {
transform: rotateY(180deg) translateZ(100px);
background: #2ecc71;
}
.face:nth-child(4) {
transform: rotateY(-90deg) translateZ(100px);
background: #f1c40f;
}
.face:nth-child(5) {
transform: rotateX(90deg) translateZ(100px);
background: #9b59b6;
}
.face:nth-child(6) {
transform: rotateX(-90deg) translateZ(100px);
background: #34495e;
}
.face:nth-child(1) { transform: translateZ(100px); background: #3498db; }
.face:nth-child(2) { transform: rotateY(90deg) translateZ(100px); background: #e74c3c; }
.face:nth-child(3) { transform: rotateY(180deg) translateZ(100px); background: #2ecc71; }
.face:nth-child(4) { transform: rotateY(-90deg) translateZ(100px); background: #f1c40f; }
.face:nth-child(5) { transform: rotateX(90deg) translateZ(100px); background: #9b59b6; }
.face:nth-child(6) { transform: rotateX(-90deg) translateZ(100px); background: #34495e; }

@keyframes rotate {
0% {
transform: rotateX(45deg) rotateY(45deg);
}
100% {
transform: rotateX(45deg) rotateY(405deg);
}
0% { transform: rotateX(45deg) rotateY(45deg); }
100% { transform: rotateX(45deg) rotateY(405deg); }
}

@keyframes spin {
0% {
transform: rotateX(45deg) rotateY(45deg);
}
100% {
transform: rotateX(45deg) rotateY(405deg);
}
0% { transform: rotateX(45deg) rotateY(45deg); }
100% { transform: rotateX(45deg) rotateY(405deg); }
}

@keyframes pulse {
0% {
transform: scale(1);
}
100% {
transform: scale(1.1);
}
0% { transform: scale(1); }
100% { transform: scale(1.1); }
}

.cube-container:hover .face:nth-child(1) {
transform: translateZ(120px);
}
.cube-container:hover .face:nth-child(2) {
transform: rotateY(90deg) translateZ(120px);
}
.cube-container:hover .face:nth-child(3) {
transform: rotateY(180deg) translateZ(120px);
}
.cube-container:hover .face:nth-child(4) {
transform: rotateY(-90deg) translateZ(120px);
}
.cube-container:hover .face:nth-child(5) {
transform: rotateX(90deg) translateZ(120px);
}
.cube-container:hover .face:nth-child(6) {
transform: rotateX(-90deg) translateZ(120px);
}
.cube-container:hover .face:nth-child(1) { transform: translateZ(120px); }
.cube-container:hover .face:nth-child(2) { transform: rotateY(90deg) translateZ(120px); }
.cube-container:hover .face:nth-child(3) { transform: rotateY(180deg) translateZ(120px); }
.cube-container:hover .face:nth-child(4) { transform: rotateY(-90deg) translateZ(120px); }
.cube-container:hover .face:nth-child(5) { transform: rotateX(90deg) translateZ(120px); }
.cube-container:hover .face:nth-child(6) { transform: rotateX(-90deg) translateZ(120px); }
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
39 changes: 39 additions & 0 deletions Art/ProfoundlyParker/Haunted-Pumpkin-Patch/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Haunted Pumpkin Patch</title>
</head>
<body>
<div class="ghost">
<div class="face">
<div class="eyes">
<span class="eye"></span><span class="eye"></span>
</div>
<div class="mouth"></div>
</div>
<div class="feet">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
<div class="ghost-2">
<div class="face-2">
<div class="eyes-2">
<span class="eye-2"></span><span class="eye-2"></span>
</div>
<div class="mouth-2"></div>
</div>
<div class="feet-2">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
</body>
</html>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 4d2a191

Please sign in to comment.