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.

80 lines
1.2 KiB

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
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. @font-face {
  2. font-family: "Fell";
  3. src: url("/IMFePIit29P.ttf");
  4. }
  5. body {
  6. background-color: #e1eef2;
  7. margin: 0;
  8. }
  9. .wrapper {
  10. max-width: 70em;
  11. height: 100%;
  12. margin: 0 auto;
  13. background-color: #FFC63F;
  14. position: relative;
  15. box-sizing: border-box;
  16. padding: 20px;
  17. }
  18. .items {
  19. list-style: none;
  20. margin: 0;
  21. padding: 0;
  22. }
  23. .items > li {
  24. display: inline-block;
  25. }
  26. .items > li a {
  27. width: 120px;
  28. height: 120px;
  29. background: #D66C00;
  30. border-radius: 80px;
  31. display: block;
  32. border: 3px solid #1a1c1c;
  33. }
  34. .items > li a:hover {
  35. background-color: #f39a3f;
  36. z-index: 1;
  37. }
  38. .items > li.face-up a {
  39. background-color: #ed8112;
  40. background-size: contain;
  41. background-repeat: no-repeat;
  42. background-position: center;
  43. }
  44. .line {
  45. border-bottom: 3px solid #1a1c1c;
  46. height: 1em;
  47. text-align: center;
  48. position: absolute;
  49. transform-origin: 0 0;
  50. font-family: "Fell";
  51. }
  52. .fullview {
  53. width: 100%;
  54. height: 100%;
  55. position: fixed;
  56. left: 0;
  57. top: 0;
  58. background-color: #e1eef280;
  59. padding: 1em;
  60. box-sizing: border-box;
  61. cursor: default;
  62. }
  63. .fullview > img {
  64. position: fixed;
  65. top: 50%;
  66. left: 50%;
  67. transform: translate(-50%, -50%);
  68. min-width: 40em;
  69. min-height: 30em;
  70. max-height: 100%;
  71. }