// Copyright (C) YOOtheme GmbH, YOOtheme Proprietary Use License (http://www.yootheme.com/license) */ // // Component: Base // // ======================================================================== // Variables // ======================================================================== @base-body-background: @global-background; @base-body-font-family: @global-body-font-family; @base-body-font-weight: @global-font-weight; @base-body-font-size: @global-font-size; @base-body-line-height: @global-line-height; @base-body-color: @global-color; @base-link-color: @global-link-color; @base-link-hover-color: @global-link-hover-color; @base-ins-color: @global-color; @base-mark-color: @global-color; @base-margin-vertical: @global-margin; @base-heading-font-family: @global-heading-font-family; @base-heading-font-weight: @global-font-weight; @base-heading-color: @global-heading-color; @base-heading-margin-top: @global-margin-large; @base-h1-font-size: round((@global-font-size * 3.2)); // 48px @base-h1-line-height: round((@base-h1-font-size * 1.21)); // 58px @base-h2-font-size: round((@global-font-size * 2.4)); // 36px @base-h2-line-height: round((@base-h2-font-size * 1.278)); // 46px @base-h3-font-size: round((@global-font-size * 1.6)); // 24px @base-h3-line-height: round((@base-h3-font-size * 1.333)); // 32px @base-h4-font-size: round((@global-font-size * 1.333)); // 20px @base-h4-line-height: round((@base-h4-font-size * 1.4)); // 28px @base-h5-font-size: @global-font-size; // 15px @base-h5-line-height: @global-line-height; // 24px @base-h6-font-size: round((@global-font-size * 0.8)); // 12px @base-h6-line-height: round((@base-h6-font-size * 1.67)); // 20px @base-hr-border: @global-border; @base-blockquote-border: @global-border; @base-blockquote-font-size: round((@global-font-size * 1.333)); // 20px @base-blockquote-line-height: round((@base-blockquote-font-size * 1.4)); // 28px @base-code-font-size: round((@global-font-size * 0.8)); // 12px @base-pre-color: @global-color; @base-pre-font-size: round((@global-font-size * 0.8)); // 12px @base-pre-line-height: round((@base-pre-font-size * 1.67)); // 20px @base-selection-background: fade(@global-primary-background, 60%); // Body // ======================================================================== .hook-base-body() {} // Text-level semantics // ======================================================================== .hook-base-code() {} // Headings // ======================================================================== .hook-base-h1() {} .hook-base-h2() {} .hook-base-h3() {} .hook-base-h4() {} .hook-base-h5() {} .hook-base-h6() {} // Preformatted text // ======================================================================== .hook-base-pre() {} // Miscellaneous // ======================================================================== .hook-base-misc() { a { transition: color .2s, background .2s, border-color .2s; } }