aboutsummaryrefslogtreecommitdiffstats
path: root/docs/src/less/components/base.less
diff options
context:
space:
mode:
Diffstat (limited to 'docs/src/less/components/base.less')
-rw-r--r--docs/src/less/components/base.less47
1 files changed, 0 insertions, 47 deletions
diff --git a/docs/src/less/components/base.less b/docs/src/less/components/base.less
deleted file mode 100644
index c584b57e..00000000
--- a/docs/src/less/components/base.less
+++ /dev/null
@@ -1,47 +0,0 @@
-// ==========================================================================
-// Base layout
-// ==========================================================================
-
-// BORDER-BOX ALL THE THINGS!
-// http://paulirish.com/2012/box-sizing-border-box-ftw/
-*, *::after, *::before {
- box-sizing: border-box;
-}
-
-// Hidden
-[hidden] {
- display: none;
-}
-
-// Base
-html {
- height: 100%;
- background: @body-background fixed;
-}
-body {
- margin: 0;
- padding: (@padding-base / 2);
-}
-
-// Header
-header {
- padding: @padding-base;
- margin-bottom: @padding-base;
-
- p {
- .font-size(18);
- }
- @media (min-width: @screen-sm) {
- padding-top: (@padding-base * 3);
- padding-bottom: (@padding-base * 3);
- }
-}
-
-// Sections
-section {
- padding-bottom: @padding-base;
-
- @media (min-width: @screen-sm) {
- padding-bottom: (@padding-base * 2);
- }
-} \ No newline at end of file