Guest User

White Top Block

a guest
Dec 23rd, 2025
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.71 KB | None | 0 0
  1. ```
  2. <!DOCTYPE html>
  3. <html lang="ru">
  4. <head>
  5. <meta charset="UTF-8" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <style>
  8. @import url("https://fontsapi.zeoseven.com/309/main/result.css"); /* KingHwaOldSong */
  9.  
  10. :root{
  11. --paper-a: #f7f5f0;
  12. --paper-b: #eee8dc;
  13. --ink: #2f2f2f;
  14. --muted: #6a645c;
  15. --bronze: #a89f91;
  16. --line: rgba(0,0,0,.08);
  17. }
  18.  
  19. .tsuki-logline {
  20. position: relative;
  21. margin: 18px auto 26px;
  22. max-width: 1120px; /* максимум, дальше не растёт */
  23. width: 100%; /* занимает доступную ширину родителя */
  24. color: var(--ink);
  25.  
  26. background:
  27. repeating-linear-gradient(
  28. 0deg,
  29. rgba(0,0,0,.012) 0px,
  30. rgba(0,0,0,.012) 1px,
  31. rgba(0,0,0,0) 22px
  32. ),
  33. linear-gradient(135deg, var(--paper-a), var(--paper-b));
  34.  
  35. border-radius: 2px;
  36. box-shadow:
  37. 0 10px 30px -12px rgba(0,0,0,.18),
  38. 0 0 0 1px rgba(0,0,0,.035),
  39. inset 0 0 18px rgba(255,255,255,.55);
  40. overflow: hidden;
  41. }
  42.  
  43. .tsuki-logline::before{
  44. content:"";
  45. position:absolute;
  46. inset: 10px;
  47. border: 1px solid rgba(168,159,145,.22);
  48. pointer-events:none;
  49. }
  50.  
  51. .tsuki-logline::after{
  52. content:"FIELD NOTE";
  53. position:absolute;
  54. right: 14px;
  55. top: 12px;
  56. font: 700 0.62rem/1 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  57. letter-spacing: .22em;
  58. color: rgba(168,159,145,.9);
  59. transform: rotate(-2deg);
  60. text-transform: uppercase;
  61. pointer-events:none;
  62. }
  63.  
  64. .logline-inner{
  65. padding: 18px 18px 16px 18px;
  66. }
  67.  
  68. .logline-head{
  69. display:flex;
  70. flex-wrap:wrap;
  71. gap: 8px 10px;
  72. align-items: baseline;
  73. padding-bottom: 10px;
  74. border-bottom: 1px dashed var(--line);
  75. }
  76.  
  77. .logline-time{
  78. font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Courier New", monospace;
  79. font-size: 0.78rem;
  80. color: var(--muted);
  81. letter-spacing: .02em;
  82. white-space: nowrap;
  83. }
  84.  
  85. .logline-sep{
  86. color: var(--bronze);
  87. opacity: .7;
  88. transform: translateY(-1px);
  89. }
  90.  
  91. .logline-place{
  92. font-family: "KingHwaOldSong", "kinghwaoldsong", "Playfair Display", "Noto Serif SC", serif;
  93. font-size: 1.02rem;
  94. font-weight: 400;
  95. }
  96.  
  97. .logline-scene{
  98. margin-top: 12px;
  99. font-family: "Playfair Display", "Noto Serif SC", serif;
  100. font-size: 0.95rem;
  101. line-height: 1.65;
  102. color: #3a3a3a;
  103. text-align: justify;
  104. }
  105.  
  106. .logline-quote{
  107. margin-top: 12px;
  108. padding: 12px 12px 12px 14px;
  109. border-left: 2px solid rgba(168,159,145,.55);
  110. background: rgba(255,255,255,.28);
  111. box-shadow: inset 0 0 0 1px rgba(0,0,0,.03);
  112. }
  113.  
  114. .logline-quote span{
  115. display:block;
  116. font-family: "KingHwaOldSong", "kinghwaoldsong", "Playfair Display", serif;
  117. font-size: 1.05rem;
  118. line-height: 1.55;
  119. color: #2e2e2e;
  120. font-style: italic;
  121. }
  122.  
  123. @media (max-width: 520px){
  124. .tsuki-logline{
  125. max-width: 100%;
  126. margin: 14px auto 22px;
  127. }
  128. .logline-inner{ padding: 14px 14px 12px; }
  129. .tsuki-logline::before{ inset: 8px; }
  130. .logline-place{ font-size: 0.98rem; }
  131. .logline-scene{ font-size: 0.92rem; }
  132. .logline-quote span{ font-size: 1.0rem; }
  133. }
  134. </style>
  135.  
  136. <div class="tsuki-logline">
  137. <div class="logline-inner">
  138. <div class="logline-head">
  139. <span class="logline-time">$1</span>
  140. <span class="logline-sep">|</span>
  141. <span class="logline-place">$2</span>
  142. </div>
  143.  
  144. <div class="logline-scene">$3</div>
  145.  
  146. <div class="logline-quote">
  147. <span>$4</span>
  148. </div>
  149. </div>
  150. </div>
  151. </body>
  152. </html>
  153. ```
Advertisement
Add Comment
Please, Sign In to add comment