detail.html 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Art Color - Floral Pattern Coloring Detail</title>
  7. <style>
  8. :root {
  9. --primary-color: #ff6b6b;
  10. --secondary-color: #4ecdc4;
  11. --accent-color: #ffd166;
  12. --background-color: #f9f9f9;
  13. --text-color: #333;
  14. --light-text: #666;
  15. --border-color: #e0e0e0;
  16. }
  17. * {
  18. margin: 0;
  19. padding: 0;
  20. box-sizing: border-box;
  21. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  22. }
  23. body {
  24. background-color: var(--background-color);
  25. color: var(--text-color);
  26. line-height: 1.6;
  27. }
  28. .container {
  29. max-width: 1200px;
  30. margin: 0 auto;
  31. padding: 0 20px;
  32. }
  33. header {
  34. background-color: var(--primary-color);
  35. color: white;
  36. padding: 30px 0;
  37. text-align: center;
  38. position: relative;
  39. }
  40. .header-logo {
  41. font-size: 1.8rem;
  42. font-weight: 700;
  43. letter-spacing: 1px;
  44. }
  45. main {
  46. padding: 40px 0;
  47. }
  48. section {
  49. margin-bottom: 50px;
  50. background-color: white;
  51. border-radius: 10px;
  52. padding: 30px;
  53. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  54. }
  55. h1 {
  56. color: var(--primary-color);
  57. font-size: 2.2rem;
  58. margin-bottom: 20px;
  59. }
  60. h2 {
  61. color: var(--secondary-color);
  62. margin: 25px 0 15px;
  63. font-size: 1.8rem;
  64. }
  65. h3 {
  66. color: var(--accent-color);
  67. margin: 20px 0 12px;
  68. font-size: 1.4rem;
  69. }
  70. p {
  71. margin-bottom: 15px;
  72. color: var(--text-color);
  73. }
  74. .btn {
  75. display: inline-block;
  76. background-color: var(--primary-color);
  77. color: white;
  78. border: none;
  79. padding: 10px 20px;
  80. border-radius: 5px;
  81. font-size: 1rem;
  82. font-weight: 500;
  83. cursor: pointer;
  84. transition: background-color 0.3s ease;
  85. text-decoration: none;
  86. text-align: center;
  87. margin-right: 10px;
  88. margin-bottom: 10px;
  89. }
  90. .btn:hover {
  91. background-color: #ff4d4d;
  92. }
  93. .btn-secondary {
  94. background-color: var(--secondary-color);
  95. }
  96. .btn-secondary:hover {
  97. background-color: #37b0a8;
  98. }
  99. .btn-accent {
  100. background-color: var(--accent-color);
  101. color: var(--text-color);
  102. }
  103. .btn-accent:hover {
  104. background-color: #ffc14d;
  105. }
  106. .btn-outline {
  107. background-color: transparent;
  108. border: 2px solid var(--primary-color);
  109. color: var(--primary-color);
  110. }
  111. .btn-outline:hover {
  112. background-color: var(--primary-color);
  113. color: white;
  114. }
  115. .tag {
  116. display: inline-block;
  117. background-color: var(--background-color);
  118. color: var(--light-text);
  119. padding: 5px 10px;
  120. border-radius: 20px;
  121. font-size: 0.9rem;
  122. margin-right: 10px;
  123. margin-bottom: 10px;
  124. transition: background-color 0.3s ease;
  125. }
  126. .tag:hover {
  127. background-color: var(--border-color);
  128. }
  129. .share-buttons {
  130. display: flex;
  131. flex-wrap: wrap;
  132. align-items: center;
  133. margin: 20px 0;
  134. }
  135. .share-buttons span {
  136. margin-right: 15px;
  137. font-weight: 500;
  138. }
  139. .share-btn {
  140. width: 36px;
  141. height: 36px;
  142. border-radius: 50%;
  143. background-color: var(--background-color);
  144. display: flex;
  145. align-items: center;
  146. justify-content: center;
  147. margin-right: 10px;
  148. cursor: pointer;
  149. transition: background-color 0.3s ease;
  150. }
  151. .share-btn:hover {
  152. background-color: var(--border-color);
  153. }
  154. .lineart-container {
  155. background-color: white;
  156. border-radius: 8px;
  157. padding: 20px;
  158. box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  159. margin-bottom: 30px;
  160. text-align: center;
  161. }
  162. .lineart-container img {
  163. max-width: 100%;
  164. height: auto;
  165. border-radius: 8px;
  166. display: block;
  167. margin: 0 auto;
  168. }
  169. .creator-info {
  170. display: flex;
  171. align-items: center;
  172. margin-bottom: 20px;
  173. }
  174. .creator-avatar {
  175. width: 40px;
  176. height: 40px;
  177. border-radius: 50%;
  178. background-color: var(--secondary-color);
  179. display: flex;
  180. align-items: center;
  181. justify-content: center;
  182. color: white;
  183. font-weight: 600;
  184. margin-right: 15px;
  185. }
  186. .creator-name {
  187. font-weight: 600;
  188. }
  189. .creator-date {
  190. color: var(--light-text);
  191. font-size: 0.9rem;
  192. }
  193. .related-grid {
  194. display: grid;
  195. grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  196. gap: 25px;
  197. margin: 30px 0;
  198. }
  199. .related-card {
  200. background-color: white;
  201. border-radius: 8px;
  202. overflow: hidden;
  203. box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  204. transition: all 0.3s ease;
  205. }
  206. .related-card:hover {
  207. transform: translateY(-5px);
  208. }
  209. .related-image {
  210. height: 200px;
  211. background-color: #f0f0f0;
  212. overflow: hidden;
  213. }
  214. .related-image img {
  215. width: 100%;
  216. height: 100%;
  217. object-fit: cover;
  218. transition: transform 0.5s ease;
  219. }
  220. .related-card:hover .related-image img {
  221. transform: scale(1.05);
  222. }
  223. .related-content {
  224. padding: 15px;
  225. }
  226. .related-title {
  227. font-weight: 600;
  228. margin-bottom: 8px;
  229. color: var(--text-color);
  230. }
  231. footer {
  232. background-color: var(--text-color);
  233. color: white;
  234. text-align: center;
  235. padding: 30px 0;
  236. margin-top: 50px;
  237. }
  238. .footer-content {
  239. max-width: 600px;
  240. margin: 0 auto;
  241. }
  242. @media (max-width: 768px) {
  243. h1 {
  244. font-size: 1.8rem;
  245. }
  246. h2 {
  247. font-size: 1.5rem;
  248. }
  249. h3 {
  250. font-size: 1.3rem;
  251. }
  252. section {
  253. padding: 20px;
  254. }
  255. .btn {
  256. width: 100%;
  257. margin-right: 0;
  258. }
  259. .related-grid {
  260. grid-template-columns: 1fr;
  261. }
  262. }
  263. </style>
  264. </head>
  265. <body>
  266. <header>
  267. <div class="container">
  268. <div class="header-logo">Art Color</div>
  269. <p>Free Printable Coloring Pages and Birthday Cards</p>
  270. </div>
  271. </header>
  272. <main class="container">
  273. <section>
  274. <h1>Intricate Floral Pattern</h1>
  275. <p class="text-light">An elaborate floral pattern design that's great for relaxation and creating stunning colored
  276. masterpieces.</p>
  277. <div class="creator-info">
  278. <div class="creator-avatar">JS</div>
  279. <div>
  280. <div class="creator-name">Jane Smith</div>
  281. <div class="creator-date">Published on June 10, 2023</div>
  282. </div>
  283. </div>
  284. <div class="tags">
  285. <span class="tag">Floral</span>
  286. <span class="tag">Pattern</span>
  287. <span class="tag">Adult Coloring</span>
  288. <span class="tag">Relaxation</span>
  289. <span class="tag">Detailed</span>
  290. </div>
  291. <div class="lineart-container">
  292. <img src="https://picsum.photos/800/800?random=1" alt="Intricate Floral Pattern Coloring Page">
  293. </div>
  294. <div class="buttons">
  295. <button class="btn">Continue</button>
  296. <button class="btn btn-secondary">Repaint</button>
  297. <button class="btn btn-outline">Review</button>
  298. <button class="btn btn-accent">Paint Online</button>
  299. <button class="btn btn-accent">Paint On APP</button>
  300. <button class="btn">Download</button>
  301. <button class="btn">Print</button>
  302. <button class="btn btn-outline" style="color: #ff4d4d; border-color: #ff4d4d;">Delete</button>
  303. </div>
  304. <div class="share-buttons">
  305. <span>Share:</span>
  306. <div class="share-btn">
  307. <svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  308. <path d="M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z" stroke="currentColor" stroke-width="2"
  309. stroke-linejoin="round" />
  310. </svg>
  311. </div>
  312. <div class="share-btn">
  313. <svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  314. <path
  315. d="M23 3a10.9 10.9 0 01-3.14 1.53 4.48 4.48 0 00-7.86 3v1A10.66 10.66 0 013 4s-4 9 5 13a11.64 11.64 0 01-7 2c9 5 20 0 20-11.5a4.5 4.5 0 00-.08-.83A7.72 7.72 0 0023 3z"
  316. stroke="currentColor" stroke-width="2" />
  317. </svg>
  318. </div>
  319. <div class="share-btn">
  320. <svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  321. <path d="M18 2h-3a5 5 0 00-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 011-1h3z" stroke="currentColor"
  322. stroke-width="2" />
  323. </svg>
  324. </div>
  325. <div class="share-btn">
  326. <svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  327. <path d="M16 8a6 6 0 016 6v7h-4v-7a2 2 0 00-2-2 2 2 0 00-2 2v7h-4v-7a6 6 0 016-6zM2 9h4v12H2z"
  328. stroke="currentColor" stroke-width="2" />
  329. </svg>
  330. </div>
  331. </div>
  332. <h2>About This Coloring Page</h2>
  333. <p>This intricate floral pattern is designed to provide hours of relaxation and creative expression. The detailed
  334. design features various flowers and leaves intertwined in a beautiful pattern that's perfect for both beginners
  335. and experienced colorists.</p>
  336. <p>Coloring this page can help reduce stress, improve focus, and allow you to express your artistic side. Whether
  337. you prefer traditional coloring tools or digital methods, this design will look stunning when complete.</p>
  338. <p>After coloring, you can share your creation with our community or use it as decorative art for your home or
  339. workspace. Enjoy the therapeutic benefits of coloring with this beautiful floral pattern!</p>
  340. </section>
  341. <section>
  342. <h2>You May Also Like</h2>
  343. <div class="related-grid">
  344. <div class="related-card">
  345. <div class="related-image">
  346. <img src="https://picsum.photos/500/500?random=2" alt="Floral Mandala Coloring Page">
  347. </div>
  348. <div class="related-content">
  349. <div class="related-title">Floral Mandala</div>
  350. <p>A beautiful mandala design filled with flowers and intricate patterns.</p>
  351. </div>
  352. </div>
  353. <div class="related-card">
  354. <div class="related-image">
  355. <img src="https://picsum.photos/500/500?random=3" alt="Butterfly Garden Coloring Page">
  356. </div>
  357. <div class="related-content">
  358. <div class="related-title">Butterfly Garden</div>
  359. <p>Butterflies flying among colorful flowers in this serene garden scene.</p>
  360. </div>
  361. </div>
  362. <div class="related-card">
  363. <div class="related-image">
  364. <img src="https://picsum.photos/500/500?random=4" alt="Ocean Waves Coloring Page">
  365. </div>
  366. <div class="related-content">
  367. <div class="related-title">Ocean Waves</div>
  368. <p>Peaceful ocean waves with sea creatures and shells along the shore.</p>
  369. </div>
  370. </div>
  371. </div>
  372. </section>
  373. </main>
  374. <footer>
  375. <div class="container footer-content">
  376. <p>Art Color - Free Printable Coloring Pages and Birthday Cards</p>
  377. <p>Bringing creativity to your fingertips, one coloring page at a time.</p>
  378. </div>
  379. </footer>
  380. </body>
  381. </html>