Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head><title>Fugaku</title></head>
- <style>
- :root
- {
- --sharingan:400px;
- --shadow:calc(var(--sharingan)/5);
- --t-width:calc(var(--sharingan)/2.5);
- --t-height:calc(var(--sharingan)/2);
- --px1:calc(var(--sharingan)/18);
- --px2:calc(var(--sharingan)/10);
- --mecir:calc(var(--sharingan)/4);
- --encir:calc(var(--sharingan)/10);
- }
- #sh
- {
- position:absolute;
- width:var(--sharingan);
- height:var(--sharingan);
- margin-top:2%;
- margin-left:2%;
- border:10px solid black;
- border-radius:50%;
- background:red;
- box-shadow:inset 0 0 var(--shadow) 10px black;
- }
- #cir
- {
- position:absolute;
- width:var(--sharingan);
- height:var(--sharingan);
- left:-0.5%;
- top:-0.5%;
- border:0px solid blue;
- border-radius:50%;
- }
- #c
- {
- position:absolute;
- width:var(--sharingan);
- height:var(--sharingan);
- left:-0.5%;
- top:-0.5%;
- border:0px solid blue;
- border-radius:50%;
- animation:ro 2s ease-in-out infinite;
- }
- #clash
- {
- position:absolute;
- width:var(--t-width);
- height:var(--t-height);
- top:25%;
- left:-1%;
- border-radius:50%;
- border-top:var(--px1) solid black;
- border-right:var(--px2) solid transparent;
- transform:rotate(40deg);
- }
- #leftcir
- {
- position:absolute;
- width:calc(var(--sharingan)/15);
- height:calc(var(--sharingan)/15);
- top:35%;
- left:25%;
- border:10px solid black;
- border-radius:50%;
- background:black;
- }
- #endcir
- {
- top:44.4%;
- left:44.4%;
- position:absolute;
- width:var(--encir);
- height:var(--encir);
- border:2px solid black;
- background:black;
- border-radius:50%;
- box-shadow:0 0 var(--shadow) 10px black;
- }
- #mecir
- {
- top:37%;
- left:37%;
- position:absolute;
- width:var(--mecir);
- height:var(--mecir);
- border:2px solid black;
- background:red;
- border-radius:50%;
- }
- #cir:nth-child(){}
- #cir:nth-child(2){transform:rotate(120deg);}
- #cir:nth-child(3){transform:rotate(-120deg);}
- @keyframes ro
- {
- from{transform:rotate(0deg)}
- to{transform:rotate(360deg)}
- }
- </style>
- <body bgcolor="#585858">
- <div id="sh">
- <div id="c" >
- <div id="cir">
- <div id="clash"></div>
- <div id="leftcir"></div>
- </div>
- <div id="cir">
- <div id="clash"></div>
- <div id="leftcir"></div>
- </div>
- <div id="cir">
- <div id="clash"></div>
- <div id="leftcir"></div>
- </div>
- <div id="mecir"></div>
- <div id="endcir"></div>
- </div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement