Piano notes book, powered by Astro and React.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

135 wiersze
1.9 KiB

  1. ---
  2. const { title } = Astro.props.frontmatter || Astro.props;
  3. ---
  4. <!doctype html>
  5. <html lang="en-PH">
  6. <head>
  7. <meta charset="UTF-8" />
  8. <meta name="viewport" content="width=device-width" />
  9. <link rel="icon" type="image/svg+xml" href="favicon.svg" />
  10. <title>{title}</title>
  11. <style is:global>
  12. html {
  13. @apply font-body;
  14. }
  15. body {
  16. @apply w-full;
  17. @apply mx-auto;
  18. @apply max-w-screen-md;
  19. @apply leading-relaxed;
  20. @apply box-border;
  21. }
  22. p {
  23. @apply my-6;
  24. @apply indent-6;
  25. @apply text-justify;
  26. }
  27. figure {
  28. @apply m-0;
  29. }
  30. figcaption {
  31. @apply text-center;
  32. }
  33. .screen-controls {
  34. @apply flex;
  35. @apply justify-center;
  36. }
  37. a:link {
  38. @apply text-blue-600;
  39. }
  40. a:visited {
  41. @apply text-purple-600;
  42. }
  43. img.score {
  44. @apply -my-8;
  45. }
  46. div.score-wrapper {
  47. @apply mt-8;
  48. @apply mb-16;
  49. }
  50. @media only screen {
  51. body {
  52. @apply px-8;
  53. @apply my-16;
  54. }
  55. }
  56. @media only print {
  57. head {
  58. @apply block;
  59. }
  60. title {
  61. @apply block;
  62. @apply text-5xl;
  63. @apply text-center;
  64. @apply my-16;
  65. @apply font-bold;
  66. }
  67. body {
  68. @apply max-w-full;
  69. @apply m-0;
  70. }
  71. .screen-controls {
  72. @apply hidden;
  73. }
  74. a:link {
  75. @apply text-inherit;
  76. @apply no-underline;
  77. }
  78. a:visited {
  79. @apply text-inherit;
  80. }
  81. figcaption {
  82. @apply text-sm;
  83. }
  84. }
  85. @media only screen and (prefers-color-scheme: dark) {
  86. html {
  87. @apply bg-black;
  88. @apply text-white;
  89. }
  90. img.score {
  91. filter: invert(100%) grayscale(100%);
  92. }
  93. a:link {
  94. @apply text-blue-400;
  95. }
  96. a:visited {
  97. @apply text-purple-400;
  98. }
  99. }
  100. @page {
  101. margin: 2cm;
  102. }
  103. </style>
  104. </head>
  105. <body>
  106. <slot />
  107. <div class="">
  108. </div>
  109. </body>
  110. </html>