Guest User

Untitled

a guest
Jan 21st, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. .space-navigator {
  2. .end {
  3. position: absolute;
  4. top: 0;
  5. height: 100%;
  6. display: flex;
  7. align-items: center;
  8. color: white;
  9. &.left {
  10. padding: 1rem;
  11. }
  12. &.right {
  13. right: 1rem;
  14. }
  15. .circle {
  16. width: 3rem;
  17. height: 3rem;
  18. background: transparent;
  19. display: flex;
  20. align-items: center;
  21. justify-content: center;
  22. border-radius: 50%;
  23. cursor: pointer;
  24. &:hover {
  25. background: rgba(0,0,0,0.25);
  26. }
  27. &:active {
  28. background: rgba(0,0,0,0.5);
  29. }
  30. svg {
  31. font-size: 2rem;
  32. }
  33. }
  34. }
  35. }
Add Comment
Please, Sign In to add comment