Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. .home {
  2. position: absolute;
  3. top: 50%;
  4. left: 50%;
  5. transform:translate(-50%, -50%);
  6. font-size: 5rem;
  7. }
  8.  
  9. .tape_cell {
  10. display: inline-block;
  11. padding: 1rem;
  12. font-weight: bold;
  13. border: 1px solid #ccc;
  14. margin-right: 1rem;
  15. }
  16.  
  17. #tape {
  18. margin: 0;
  19. display: flex;
  20. flex-direction: row;
  21. }
  22.  
  23. #head {
  24. margin: 0;
  25. display: flex;
  26. flex-direction: row;
  27. }
  28.  
  29. #head span {
  30. display: inline-block;
  31. padding: 0 1rem;
  32. font-weight: bold;
  33. margin-right: 1rem;
  34. }
  35.  
  36. .hide {
  37. opacity: 0;
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement