Skip to content

Instantly share code, notes, and snippets.

@ManiaciaChao
Created November 18, 2020 11:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ManiaciaChao/f74ef6c10d5f0c67b3813a798d7c4740 to your computer and use it in GitHub Desktop.
Save ManiaciaChao/f74ef6c10d5f0c67b3813a798d7c4740 to your computer and use it in GitHub Desktop.
Draw a Taichi symbol with CSS
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Taichi</title>
<style>
.taichi {
width: 400px;
height: 400px;
background: linear-gradient(to right, #fff 50%, #000 50%);
box-shadow: #333 0px 0px 5px;
border-radius: 50%;
}
.taichi::before,
.taichi::after {
content: "";
display: block;
box-sizing: border-box;
width: 200px;
height: 200px;
margin-left: 100px;
border-radius: inherit;
}
.taichi::before {
background: #000;
border: 70px solid #fff;
}
.taichi::after {
background: #fff;
border: 70px solid #000;
}
</style>
</head>
<body>
<div class="taichi"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment