mirror of
https://github.com/pa11y/pa11y-dashboard.git
synced 2025-09-25 23:01:31 +00:00

* Update gitignore * Update makefile. Add hbs helper * Collect all selectors for errors/warnings/notices * Add list of techniques that help to solve problems * Remove task-stats block from sidebar * Remove script from Makefile * Update tooltips. Map standards and techniques * Update layout for new components: new tabs, errors panels, lists of selectors, tooltips and popovers * Update styles for new layout and components * Graph buttons and popovers styles * Reformat less code * Include popover. Update IE styles * Problem details. Context popovers * Update graph buttons. Add sorting by number of errors * Update graph buttons params * Fix tooltip names * Swap details and ignore link-buttons * Set ignore link colors
41 lines
839 B
Plaintext
41 lines
839 B
Plaintext
//
|
|
// Jumbotron
|
|
// --------------------------------------------------
|
|
|
|
.jumbotron {
|
|
padding: @jumbotron-padding;
|
|
margin-bottom: @jumbotron-padding;
|
|
font-size: (@font-size-base * 1.5);
|
|
font-weight: 200;
|
|
line-height: (@line-height-base * 1.5);
|
|
color: @jumbotron-color;
|
|
background-color: @jumbotron-bg;
|
|
|
|
h1 {
|
|
line-height: 1;
|
|
color: @jumbotron-heading-color;
|
|
}
|
|
|
|
p {
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.container & {
|
|
border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container
|
|
}
|
|
|
|
@media screen and (min-width: @screen-sm-min) {
|
|
padding-top: (@jumbotron-padding * 1.6);
|
|
padding-bottom: (@jumbotron-padding * 1.6);
|
|
|
|
.container & {
|
|
padding-left: (@jumbotron-padding * 2);
|
|
padding-right: (@jumbotron-padding * 2);
|
|
}
|
|
|
|
h1 {
|
|
font-size: (@font-size-base * 4.5);
|
|
}
|
|
}
|
|
}
|