You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
748 B

4 years ago
  1. body {
  2. background-color: #e2eff3;
  3. margin: 0;
  4. }
  5. .wrapper {
  6. max-width: 70em;
  7. margin: 0 auto;
  8. background-color: #FFC63F;
  9. }
  10. .items {
  11. list-style: none;
  12. margin: 0;
  13. }
  14. .items > li {
  15. display: inline-block;
  16. }
  17. .items > li a {
  18. width: 8em;
  19. height: 8em;
  20. background: #D66C00;
  21. margin: 2em;
  22. border-radius: 4em;
  23. display: block;
  24. }
  25. .items > li a:hover {
  26. background: #f39a3f;
  27. }
  28. .items > li.face-up a {
  29. background-color: #ed8112;
  30. }
  31. .fullview {
  32. width: 100%;
  33. height: 100%;
  34. position: fixed;
  35. left: 0;
  36. top: 0;
  37. background-color: #858c8f90;
  38. padding: 1em;
  39. box-sizing: border-box;
  40. cursor: default;
  41. }
  42. .fullview > div {
  43. background-color: #858c8f;
  44. width: 20em;
  45. margin: 5em auto;
  46. position: relative;
  47. height: 30em;
  48. }