Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <title>izuna</title>
- </head>
- <style>
- :root
- {
- --sharingan:500px;
- --shadow:calc(var(--sharingan)/5);
- }
- #sharingan
- {
- position:absolute;
- width:var(--sharingan);
- height:var(--sharingan);
- margin-top:3%;
- margin-left:3%;
- border:10px solid black;
- border-radius:50%;
- background:red;
- }
- #c
- {
- position:absolute;
- width:var(--sharingan);
- height:var(--sharingan);
- margin-left:-0.3%;
- border:0px solid black;
- border-radius:50%;
- }
- #c1
- {
- position:absolute;
- width:var(--sharingan);
- height:var(--sharingan);
- margin-left:-0.3%;
- border:0px;
- border-radius:50%;
- animation:ro 2s ease-in-out infinite ;
- }
- #ro
- {
- position:absolute;
- width:70%;
- height:70%;
- left:15%;
- top:15%;
- border:0px solid black;
- background:black;
- border-radius:50%;
- }
- #sq
- {
- position:absolute;
- width:20%;
- height:30%;
- left:39%;
- top:-0.5%;
- border-radius:10%;
- border:2px solid black;
- background:black;
- }
- #inc
- {
- position:absolute;
- width:15%;
- height:15%;
- left:42.5%;
- top:42.5%;
- border-radius:50%;
- border:2px solid red;
- background:red;
- box-shadow:0 0 var(--shadow) 20px red;
- }
- #c:nth-child(1){}
- #c:nth-child(2){transform:rotate(120deg);}
- #c:nth-child(3){transform:rotate(-120deg);}
- @keyframes ro
- {
- from{transform:rotate(0deg)}
- to{transform:rotate(360deg)}
- }
- </style>
- <body bgcolor="#595959">
- <div id="sharingan">
- <div id="c1" >
- <div id="c" >
- <div id="sq"></div>
- </div>
- <div id="c">
- <div id="sq"></div>
- </div>
- <div id="c">
- <div id="sq"></div>
- </div>
- </div>
- <div id="ro"></div>
- <div id="inc"></div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement