diff options
Diffstat (limited to 'demo/src/less/layout/core.less')
-rw-r--r-- | demo/src/less/layout/core.less | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/demo/src/less/layout/core.less b/demo/src/less/layout/core.less deleted file mode 100644 index 08352e3d..00000000 --- a/demo/src/less/layout/core.less +++ /dev/null @@ -1,69 +0,0 @@ -// ========================================================================== -// Core -// ========================================================================== - -*, -*::after, -*::before { - box-sizing: border-box; -} - -html, -body { - display: flex; - width: 100%; -} - -html { - background: @page-background; - background-attachment: fixed; - height: 100%; -} - -body { - display: flex; - min-height: 100%; - align-items: center; - flex-direction: column; -} - -.grid { - flex: 1; - overflow: auto; -} - -main { - margin: auto; - text-align: center; -} - -aside { - position: relative; - display: flex; - flex-shrink: 0; - align-items: center; - justify-content: center; - width: 100%; - padding: (@spacing-base * 0.75); - background: #fff; - text-align: center; - color: @gray; - text-shadow: none; - - .icon { - margin-right: (@spacing-base / 2); - fill: @color-twitter; - } - - p { - margin: 0; - } - - a { - color: @color-twitter; - - &.tab-focus { - .tab-focus(@color-twitter); - } - } -} |