_display-attr.scss 867 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. // This file is part of the DITA Open Toolkit project.
  2. //
  3. // Copyright 2016 Eero Helenius
  4. //
  5. // See the accompanying LICENSE file for applicable license.
  6. // @frame
  7. .frame-top {
  8. border-top: solid 1px;
  9. border-right: 0;
  10. border-bottom: 0;
  11. border-left: 0;
  12. }
  13. .frame-bottom {
  14. border-top: 0;
  15. border-right: 0;
  16. border-bottom: solid 1px;
  17. border-left: 0;
  18. }
  19. .frame-topbot {
  20. border-top: solid 1px;
  21. border-right: 0;
  22. border-bottom: solid 1px;
  23. border-left: 0;
  24. }
  25. .frame-all {
  26. border: solid 1px;
  27. }
  28. .frame-sides {
  29. border-top: 0;
  30. border-left: solid 1px;
  31. border-right: solid 1px;
  32. border-bottom: 0;
  33. }
  34. .frame-none {
  35. border: 0;
  36. }
  37. // @scale
  38. $scale: 50 60 70 80 90 100 110 120 140 160 180 200;
  39. @each $value in $scale {
  40. .scale-#{$value} {
  41. font-size: unquote($value + '%');
  42. }
  43. }
  44. // @expanse
  45. .expanse-page, .expanse-spread {
  46. width: 100%;
  47. }