Last active
March 17, 2022 15:40
-
-
Save bran-deb/9f576a15f0b370f7ac9bd36cc3541ed3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body{ | |
background-color: #222; | |
} | |
div{ | |
background-color: #b1060f; | |
height: 250px; | |
width: 60px; | |
position: relative; | |
} | |
div::before{ | |
background-color: #b1060f; | |
height: 250px; | |
width: 60px; | |
position: absolute; | |
content: ''; | |
left: 90px; | |
} | |
div::after{ | |
background-color: #222; | |
height: 20px; | |
width: 175px; | |
position: absolute; | |
content: ''; | |
left: -15px; | |
bottom: -10px; | |
border-radius: 50%; | |
} | |
span{ | |
background-color: #e50913; | |
position: absolute; | |
height: 250px; | |
width: 60px; | |
left: 46px; | |
transform: skew(20deg); | |
box-shadow: 0 0 10px -4px #222; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<link rel="stylesheet" href="index.css"> | |
<title>Document</title> | |
</head> | |
<body> | |
<div> | |
<span></span> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment