Skip to content

Instantly share code, notes, and snippets.

@victors1681
Created December 11, 2018 01:37
Show Gist options
  • Save victors1681/1016c0c7245a014b0ec6eb044d91059a to your computer and use it in GitHub Desktop.
Save victors1681/1016c0c7245a014b0ec6eb044d91059a to your computer and use it in GitHub Desktop.
.counter {
&-wrapper {
width: 350px;
text-align: center;
font-family: sans-serif;
border: 1px solid lightgray;
padding: 20px;
border-radius: 5px;
box-shadow: 3px 2px 45px #aaaaaa36;
margin: 50px;
}
&-header {
color: #03a9f4;
font-family: sans-serif;
font-weight: 400;
}
&-result {
padding: 20px;
}
&-button {
cursor: pointer;
height: 30px;
width: 300;
color: white;
background: #4caf50;
border: none;
border-radius: 5px;
font-size: 13px;
transition: background 0.2s ease-in-out;
&:hover {
background: #28882c;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment