キケッツ掲示板のリポジトリです. https://bbs.kekec.wiki
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.
 
 
 
 
 

105 lines
1.2 KiB

  1. body
  2. {
  3. background-color: aquamarine;
  4. }
  5. table
  6. {
  7. margin: 24px auto 40px;
  8. }
  9. td
  10. {
  11. padding: 8px;
  12. }
  13. table, td
  14. {
  15. border: solid 1px;
  16. background-color: white;
  17. }
  18. #paint
  19. {
  20. margin-bottom: 64px;
  21. }
  22. #paint > div
  23. {
  24. margin: 24px auto;
  25. }
  26. h1, .illust
  27. {
  28. text-align: center;
  29. }
  30. .radio
  31. {
  32. /* width: 704px; */
  33. /* display: inline-block; */
  34. vertical-align: middle;
  35. line-height: 1.5em;
  36. /* margin: auto; */
  37. }
  38. .button-area, .canvas-area
  39. {
  40. text-align: center;
  41. }
  42. .canvas-area
  43. {
  44. width: 480px;
  45. height: 480px;
  46. max-width: 100%;
  47. position: relative;
  48. padding: 0;
  49. box-sizing: content-box;
  50. }
  51. .canvas-area:before
  52. {
  53. content: "";
  54. display: block;
  55. padding-top: 100%;
  56. }
  57. .canvas-area > canvas
  58. {
  59. position: absolute;
  60. left: 0;
  61. top: 0;
  62. border: 1px solid;
  63. max-width: 100%;
  64. box-sizing: content-box;
  65. padding: 0;
  66. margin: 0;
  67. }
  68. .modal {
  69. display: none;
  70. position: fixed;
  71. z-index: 1;
  72. left: 0;
  73. top: 0;
  74. width: 100%;
  75. height: 100%;
  76. background-color: rgba(0, 0, 0, 0.4);
  77. }
  78. .modal-content {
  79. background-color: #fff;
  80. margin: 15% auto;
  81. padding: 20px;
  82. border: 1px solid #888;
  83. width: 400px;
  84. text-align: center;
  85. }
  86. @media only screen and (max-width: 600px) {
  87. .modal-content {
  88. width: 70%;
  89. }
  90. }