Skip to content

Instantly share code, notes, and snippets.

@cyriac
Last active November 19, 2016 15:55
Show Gist options
  • Save cyriac/67338975b6f4c6a686f3c92cc7dda673 to your computer and use it in GitHub Desktop.
Save cyriac/67338975b6f4c6a686f3c92cc7dda673 to your computer and use it in GitHub Desktop.
Single element Compile logo
<!-- http://codepen.io/pen/WoRdgW -->
<div class="logo"></div>
$bg: #4a90e2;
$fg: #fff;
$lgsize: 100px;
$barsize: 10px;
body {
text-align: center;
padding: 140px;
.logo {
margin: auto;
border-radius: 50%;
height: $lgsize;
width: $lgsize;
background: $bg;
position: relative;
box-shadow: 0px 5px 5px rgba(0, 0, 0, .3);
&:after, &:before {
content: "";
display: block;
width: $barsize;
background: $fg;
position: absolute;
}
&:after {
height: 25px;
top: 45px;
left: 35px;
}
&:before {
height: 45px;
top: 25px;
right: 35px;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment