Skip to content

Instantly share code, notes, and snippets.

@wongni
Last active January 12, 2018 05:55
Show Gist options
  • Save wongni/52db76a864fa3e6b8538d4138162b19c to your computer and use it in GitHub Desktop.
Save wongni/52db76a864fa3e6b8538d4138162b19c to your computer and use it in GitHub Desktop.
.space-navigator {
.end {
position: absolute;
top: 0;
height: 100%;
display: flex;
align-items: center;
color: white;
&.left {
padding: 1rem;
}
&.right {
right: 1rem;
}
.circle {
width: 3rem;
height: 3rem;
background: transparent;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
cursor: pointer;
&:hover {
background: rgba(0,0,0,0.25);
}
&:active {
background: rgba(0,0,0,0.5);
}
svg {
font-size: 2rem;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment