post-expand.styl 889 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. .content {
  2. padding-top: 40px;
  3. }
  4. .post-body {
  5. +desktop() {
  6. text-align: unquote(hexo-config('text_align.desktop'));
  7. }
  8. +tablet-mobile() {
  9. text-align: unquote(hexo-config('text_align.mobile'));
  10. }
  11. h1, h2, h3, h4, h5, h6 {
  12. padding-top: 10px;
  13. .header-anchor {
  14. border-bottom-style: none;
  15. color: $grey-light;
  16. float: right;
  17. margin-left: 10px;
  18. visibility: hidden;
  19. &:hover {
  20. color: inherit;
  21. }
  22. }
  23. &:hover .header-anchor {
  24. visibility: visible;
  25. }
  26. }
  27. iframe, img, video {
  28. margin-bottom: 20px;
  29. }
  30. .video-container {
  31. height: 0;
  32. margin-bottom: 20px;
  33. overflow: hidden;
  34. padding-top: 75%;
  35. position: relative;
  36. width: 100%;
  37. iframe, object, embed {
  38. height: 100%;
  39. left: 0;
  40. margin: 0;
  41. position: absolute;
  42. top: 0;
  43. width: 100%;
  44. }
  45. }
  46. }