Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <title>Naka</title>
- </head>
- <style>
- :root
- {
- --sharingan:400px;
- --shadow:calc(var(--sharingan)/4);
- }
- #sharingan
- {
- position:absolute;
- width:var(--sharingan);
- height:var(--sharingan);
- margin:3%;
- border:15px solid black;
- background:black;
- border-radius:50%;
- }
- #c
- {
- position:absolute;
- width:var(--sharingan);
- height:var(--sharingan);
- border:0px solid blue;
- border-radius:50%;
- animation:ro 2s ease-in-out infinite;
- }
- #c1
- {
- position:absolute;
- width:var(--sharingan);
- height:var(--sharingan);
- border:0px solid white;
- border-radius:50%;
- }
- #incir
- {
- position:absolute;
- width:20%;
- height:20%;
- top:39%;
- left:39%;
- border:4px solid black;
- background:red;
- border-radius:50%;
- box-shadow:0 0 100px 10px black;
- }
- #cir
- {
- position:absolute;
- width:75%;
- height:75%;
- top:10%;
- left:10%;
- border:2px solid black;
- background:black;
- border-radius:50%;
- }
- #cur
- {
- position:absolute;
- width:68%;
- height:68%;
- top:25%;
- left:4%;
- border-radius:50%;
- border-top:100px solid red;
- border-left:100px solid transparent;
- border-right:5px solid transparent;
- transform:rotate(10deg)
- }
- #cur2
- {
- position:absolute;
- width:70%;
- height:70%;
- top:-15.5%;
- left:24%;
- border-radius:50%;
- border-top:80px solid red;
- border-left:10px solid transparent;
- border-right:0px solid transparent;
- transform:rotate(-20deg)
- }
- #c1:nth-child(){}
- #c1:nth-child(2){transform:rotate(120deg)}
- #c1: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="c">
- <div id="c1">
- <div id="cur"><div id="cur2"></div></div>
- </div>
- <div id="c1">
- <div id="cur"><div id="cur2"></div></div>
- </div>
- <div id="c1">
- <div id="cur"><div id="cur2"></div></div>
- </div>
- <div id="incir"><div id="cir"></div></div>
- </div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement