blob: 2fb0bf5e05ff086b51d5a075106a2599de3b41e0 (
plain)
- @import "toolkit";
- @import "compass/typography/lists";
- @import "../shared/themes/default/ikiwiki";
- @include ikiwiki-style;
- // Action items
- //
- // Right-aligned horizontal items, hidden unless hovered
- .pageheader .actions {
- position: absolute;
- top: 0;
- right: 2em;
- background-color: transparent;
- ul {
- @include inline-block-list;
- height: 2em;
- }
- a {
- color: transparent;
- &:hover {
- color: #3d6a8d;
- text-decoration: none;
- }
- }
- }
- // Definition lists
- //
- // Full-width horizontal items with definitions right-aligned
- dl {
- display: inline-block;
- width: 100%;
- }
- dt {
- float: left;
- clear: right;
- }
- dd {
- float: right;
- }
|