summaryrefslogtreecommitdiff
path: root/style.scss
blob: 9a9d4cec57d451ded274e709f2bebe8786ddb074 (plain)
  1. @import "toolkit";
  2. @import "compass/typography/lists";
  3. @import "../shared/themes/default/ikiwiki";
  4. @include ikiwiki-style;
  5. .pageheader .actions {
  6. position: absolute;
  7. top: 0;
  8. right: 2em;
  9. background-color: transparent;
  10. ul {
  11. @include inline-block-list;
  12. height: 2em;
  13. }
  14. a {
  15. color: transparent;
  16. &:hover {
  17. color: #3d6a8d;
  18. text-decoration: none;
  19. }
  20. }
  21. }
  22. // Definition lists
  23. //
  24. // Full-width horizontal items with definitions right-aligned
  25. dl {
  26. display: inline-block;
  27. width: 100%;
  28. }
  29. dt {
  30. float: left;
  31. clear: right;
  32. }
  33. dd {
  34. float: right;
  35. }