single.html 744 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {{ define "title"}}
  2. {{ .Title }} | {{ .Site.Params.author.name }}
  3. {{ end }}
  4. {{ define "main" }}
  5. <article class="content-padding">
  6. {{ .Content }}
  7. </article>
  8. <style>
  9. .content-padding {
  10. padding-top: 2rem;
  11. }
  12. .project-container {
  13. margin-bottom: 4rem;
  14. }
  15. .project-layout {
  16. display: flex;
  17. gap: 2rem;
  18. align-items: flex-start;
  19. }
  20. .project-image {
  21. flex: 0 0 150px;
  22. }
  23. .project-image img {
  24. width: 100%;
  25. height: auto;
  26. }
  27. .project-content {
  28. flex: 1;
  29. text-align: left;
  30. }
  31. .project-content h1,
  32. .project-content h2,
  33. .project-content h3 {
  34. margin-top: 0;
  35. }
  36. @media (max-width: 768px) {
  37. .project-layout {
  38. flex-direction: column;
  39. }
  40. .project-content {
  41. width: 100%;
  42. }
  43. }
  44. </style>
  45. {{ end }}