Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changed chaosweb logo to more crazy way #194

Merged
merged 1 commit into from
Oct 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 19 additions & 10 deletions chaos.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,17 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chaos Web - Sign In</title>
<style>
img{
width: 170px;
height: 170px;
/* border: white 5px solid; */
position: absolute;
top: 10px;
left: 50px;
border-radius: 50%;
box-shadow: 0 1px 10px #87ceeb, 0 1px 20px #87ceeb;
}
img {
width: 170px;
height: 170px;
position: absolute;
top: 10px;
left: 50px;
border-radius: 50%;
box-shadow: 0 1px 20px rgba(135, 206, 235, 0.5), 0 1px 30px rgba(135, 206, 235, 0.5); /* Soften shadow with transparency */
background-color: rgba(0, 0, 0, 0.2); /* Optional: slight dark overlay for better blending */
animation: rotate 5s linear infinite; /* Rotate continuously */
}
body {
background: url('3d-effect-hypnosis-spiral-vector-7844424.jpg') center center fixed, #000;
background-size: cover;
Expand All @@ -26,6 +27,14 @@
z-index: 1;
overflow: hidden; /* Prevent scrolling */
}
@keyframes rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}

@keyframes moveBackground {
0% { background-position: 0 0; }
Expand Down
Loading