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.

66 lines
1019 B

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. body {
  2. background-color: #e2eff3;
  3. margin: 0;
  4. }
  5. .wrapper {
  6. max-width: 70em;
  7. height: 100%;
  8. margin: 0 auto;
  9. background-color: #FFC63F;
  10. position: relative;
  11. box-sizing: border-box;
  12. padding: 20px;
  13. }
  14. .items {
  15. list-style: none;
  16. margin: 0;
  17. padding: 0;
  18. }
  19. .items > li {
  20. display: inline-block;
  21. }
  22. .items > li a {
  23. width: 120px;
  24. height: 120px;
  25. background: #D66C00;
  26. border-radius: 80px;
  27. display: block;
  28. border: 3px solid #1a1c1c;
  29. }
  30. .items > li a:hover {
  31. background-color: #f39a3f;
  32. z-index: 1;
  33. }
  34. .items > li.face-up a {
  35. background-color: #ed8112;
  36. background-size: contain;
  37. background-repeat: no-repeat;
  38. background-position: center;
  39. }
  40. .fullview {
  41. width: 100%;
  42. height: 100%;
  43. position: fixed;
  44. left: 0;
  45. top: 0;
  46. background-color: #858c8f90;
  47. padding: 1em;
  48. box-sizing: border-box;
  49. cursor: default;
  50. }
  51. .fullview > div {
  52. background-color: #858c8f;
  53. position: fixed;
  54. top: 50%;
  55. left: 50%;
  56. transform: translate(-50%, -50%);
  57. min-width: 40em;
  58. min-height: 30em;
  59. }