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.

63 lines
925 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
  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: 60px;
  27. display: block;
  28. }
  29. .items > li a:hover {
  30. background-color: #f39a3f;
  31. z-index: 1;
  32. }
  33. .items > li.face-up a {
  34. background-size: cover;
  35. background-color: #ed8112;
  36. }
  37. .fullview {
  38. width: 100%;
  39. height: 100%;
  40. position: fixed;
  41. left: 0;
  42. top: 0;
  43. background-color: #858c8f90;
  44. padding: 1em;
  45. box-sizing: border-box;
  46. cursor: default;
  47. }
  48. .fullview > div {
  49. background-color: #858c8f;
  50. position: fixed;
  51. top: 50%;
  52. left: 50%;
  53. transform: translate(-50%, -50%);
  54. min-width: 40em;
  55. min-height: 30em;
  56. }