| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- /* Typography */
- body, h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, p, .navbar, .brand, .btn-simple, .alert, a, .td-name, td, button.close {
- -moz-osx-font-smoothing: grayscale;
- -webkit-font-smoothing: antialiased;
- font-family: 'Lato', sans-serif;
- }
- body {
- font-size: 14px;
- color: $body-text-color;
- }
- a {
- color: $primary-color;
- &:hover, &:focus {
- color: $primary2-color;
- }
- }
- h1,
- .h1
- {
- font-size: 1.725rem;
- }
- h2,
- .h2
- {
- font-size: 1.35rem;
- }
- h3,
- .h3
- {
- font-size: 1.1625rem;
- }
- h4,
- .h4
- {
- font-size: 1.0375rem;
- }
- h5,
- .h5
- {
- font-size: .9125rem;
- }
- h6,
- .h6
- {
- font-size: .825rem;
- }
- p {
- font-size: 14px;
- line-height: 1.82;
- margin-bottom: 1rem;
- word-break: break-word;
- }
- h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
- line-height: 1.4;
- a {
- color: inherit;
- }
- }
- small, .small {
- font-size: 13px;
- }
- b, .b, strong, .strong{
- font-weight: $font-weight-bold;
- }
- .page-pretitle{
- letter-spacing: .08em;
- text-transform: uppercase;
- color: #95aac9;
- }
- .page-title {
- font-size: 23px;
- font-weight: $font-weight-bold;
- color: #444444;
- line-height: 30px;
- margin-bottom: 20px;
- }
- .page-category {
- color: #444444;
- line-height: 1.8;
- margin-bottom: 25px;
- }
- .text-primary, .text-primary a {
- color: $primary-color !important;
- &:hover {
- color: $primary-color !important;
- }
- }
- .text-secondary, .text-secondary a {
- color: $secondary-color !important;
- &:hover {
- color: $secondary-color !important;
- }
- }
- .text-info, .text-info a {
- color: $info-color !important;
- &:hover {
- color: $info-color !important;
- }
- }
- .text-success, .text-success a {
- color: $success-color !important;
- &:hover {
- color: $success-color !important;
- }
- }
- .text-warning, .text-warning a {
- color: $warning-color !important;
- &:hover {
- color: $warning-color !important;
- }
- }
- .text-danger, .text-danger a {
- color: $danger-color !important;
- &:hover {
- color: $danger-color !important;
- }
- }
- label {
- color: #495057 !important;
- font-size: 14px !important;
- }
- .text-small {
- font-size: 11px;
- }
- .metric-value {
- margin-bottom: 5px;
- line-height: 1;
- white-space: nowrap;
- }
- .metric-label {
- font-size: .975rem;
- font-weight: 500;
- color: #686f76;
- white-space: nowrap;
- margin-bottom: 0;
- }
- /* Font-weight */
- .fw-light {
- font-weight: $font-weight-light !important;
- }
- .fw-normal {
- font-weight: $font-weight-normal !important;
- }
- .fw-mediumbold {
- font-weight: $font-weight-normal !important;
- }
- .fw-bold {
- font-weight: $font-weight-bold !important;
- }
- .fw-extrabold {
- font-weight: $font-weight-extrabold !important;
- }
|