Advertisement
Aniket_Goku

baru

Mar 24th, 2021
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.24 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <title>baru</title>
  4.     </head>
  5.     <style>
  6.         :root
  7.         {
  8.             --sharingan:500px;
  9.             --t-left:calc(var(--sharingan)/2.4);
  10.             --t-bottom:calc(var(--sharingan)/1.3);
  11.             --incir-size:calc(var(--sharingan)/6);
  12.             --shadow:calc(var(--sharingan)/6);
  13.        
  14.         }
  15.         #s
  16.         {
  17.             position:absolute;
  18.             width:var(--sharingan);
  19.             height:var(--sharingan);
  20.             top:3%;
  21.             left:3%;
  22.             border:0px solid black;
  23.             background:black;
  24.             border-radius:50%;
  25.         }
  26.         #ro
  27.         {
  28.             position:absolute;
  29.             width:var(--sharingan);
  30.             height:var(--sharingan);
  31.             top:0%;
  32.             left:0%;
  33.             border:px solid blue;
  34.             border-radius:50%;
  35.         }
  36.         #t
  37.         {
  38.             position:absolute;
  39.             top:0%;
  40.             left:8.5%;
  41.             width:0;
  42.             height:0;
  43.             border-left:var(--t-left) solid transparent;
  44.             border-right:var(--t-left) solid transparent;
  45.             border-bottom:var(--t-bottom) solid black;
  46.            
  47.            
  48.         }
  49.         #t2
  50.         {
  51.             position:absolute;
  52.             top:02%;
  53.             left:11%;
  54.             width:0;
  55.             height:0;
  56.             border-left:calc(var(--t-left)/1.06) solid transparent;
  57.             border-right:calc(var(--t-left)/1.06) solid transparent;
  58.             border-bottom:calc(var(--t-bottom)/1.05) solid red;
  59.            
  60.            
  61.         }
  62.         #round
  63.         {
  64.             position:absolute;
  65.             border:2px solid red;
  66.             height:calc(var(--sharingan)/1.9);
  67.             width:calc(var(--sharingan)/3);
  68.             background:red;
  69.             border-radius:50%;
  70.             top:2%;
  71.             left:18%;
  72.             transform:rotate(30deg);
  73.         }
  74.         #incir
  75.         {
  76.             position:absolute;
  77.             border:px solid black;
  78.             width:var(--incir-size);
  79.             height:var(--incir-size);
  80.             top:41.5%;
  81.             left:41.5%;
  82.             background:black;
  83.             border-radius:50%;
  84.             box-shadow: 0 0 var(--shadow) 20px black;
  85.         }  
  86.         @keyframes ro
  87.         {
  88.             from{transform:rotate(0deg)}
  89.             to{transform: rotate(360deg)}
  90.         }
  91.         #ro:nth-child(){}
  92.         #ro:nth-child(2){transform:rotate(-125deg)}
  93.         #ro:nth-child(3){transform:rotate(120deg)}
  94.     </style>
  95.     <body bgcolor="#363636">
  96.         <div id="s" >
  97.             <div id="ro"  style="animation:ro 2s ease-in-out infinite">
  98.             <div id="ro">
  99.                 <div id="round"></div> 
  100.                
  101.             </div>
  102.             <div id="ro">
  103.                 <div id="round"></div> 
  104.             </div>
  105.             <div id="ro">
  106.                 <div id="round"></div> 
  107.                
  108.             </div>
  109.             <div id="t"></div>
  110.             <div id="t2"></div>
  111.             <div id="incir"></div>
  112.             </div>
  113.         </div>
  114.     </body>
  115. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement