723b4f3451
* include class bonus in sorting * wip - show more information in the attributes grid * attributes tooltip + dialog redesign * fix stat calculation * fix spacings * show class in equip-gear-modal * fix buy-modal attributes-grid, clean up css * show attributes popover in profile-stats overview * add class / purchase type colors to colors.scss - replace colors by variable - clean up * translate strings
76 lines
1.1 KiB
SCSS
76 lines
1.1 KiB
SCSS
body {
|
|
font-family: 'Roboto', sans-serif;
|
|
color: $gray-50;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
font-size: 14px;
|
|
line-height: 1.43;
|
|
}
|
|
|
|
.small-text {
|
|
font-size: 12px;
|
|
font-style: italic;
|
|
line-height: 1.33;
|
|
color: $gray-200;
|
|
}
|
|
|
|
a, a:not([href]):not([tabindex]) {
|
|
cursor: pointer;
|
|
|
|
&.standard-link {
|
|
color: $blue-10;
|
|
|
|
&:hover, &:active, &:focus {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
&[disabled="disabled"] {
|
|
color: $gray-300;
|
|
text-decoration: none;
|
|
cursor: default;
|
|
}
|
|
}
|
|
|
|
&.small-link {
|
|
font-size: 12px;
|
|
line-height: 1.33;
|
|
}
|
|
}
|
|
|
|
// Headers
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Roboto Condensed', sans-serif;
|
|
font-weight: bold;
|
|
color: $gray-10;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 24px;
|
|
line-height: 1.67;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 20px;
|
|
line-height: 1.2;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
color: $gray-50;
|
|
margin-bottom: 9px;
|
|
}
|
|
|
|
h4 {
|
|
font-size: 14px;
|
|
line-height: 1.43;
|
|
}
|
|
|
|
.textCondensed {
|
|
font-family: 'Roboto Condensed', sans-serif;
|
|
font-weight: bold;
|
|
}
|