post.less 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. .post{
  2. background: white;
  3. padding: 30px;
  4. h1{
  5. font-size: 36px;
  6. font-weight: bold;
  7. margin-bottom: 15px;
  8. }
  9. .lead{
  10. font-size: 20px;
  11. line-height: 140%;
  12. padding-bottom: 20px;
  13. color: #737373;
  14. }
  15. .published_at,.image-title{
  16. margin-bottom: 20px;
  17. font: 12px/14px "Golos Text",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Ubuntu,Arial,sans-serif;
  18. color: #878787;
  19. }
  20. .text{
  21. font: 20px/30px "Source Serif Pro","Golos Text",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Ubuntu,Arial,sans-serif;
  22. color: #222;
  23. h6 {
  24. background-color: #f7f5ee;
  25. padding: 20px 10px 20px 20px;
  26. margin: 30px 0;
  27. border-left: 2px solid #f6911f;
  28. line-height: 150%;
  29. font-size: 20px;
  30. }
  31. h5{
  32. margin-top: -10px;
  33. color: #767676;
  34. font-size: 0.83em;
  35. }
  36. .iframe-wrapper{
  37. max-width: 100%;
  38. margin-bottom: 30px;
  39. position: relative;
  40. width: 100%;
  41. padding-bottom: 56.25%;
  42. iframe{
  43. position: absolute;
  44. width: 100%;
  45. height: 100%;
  46. }
  47. }
  48. }
  49. @import "post/gallery";
  50. @import "post/inject";
  51. @import "post/img";
  52. }