X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/68dbe44bdbc497a82064c6a47eeaecbb34463f64..357027375ff8867f42ca34bcbfb5a78b5b185fc3:/apps/wolnelektury_core/static/scss/book_text/menu.scss diff --git a/apps/wolnelektury_core/static/scss/book_text/menu.scss b/apps/wolnelektury_core/static/scss/book_text/menu.scss deleted file mode 100644 index e2879b429..000000000 --- a/apps/wolnelektury_core/static/scss/book_text/menu.scss +++ /dev/null @@ -1,78 +0,0 @@ -/* Button for showing menu */ -#menu-toggle-on { - width: 20px; - height: 20px; - position: fixed; - top: 0; - left: 0; - background: #191919; - color: white; - text-align: center; - z-index: 500; - - @include min-screen(240px) { - width: 30px; - height: 30px; - } - - @include min-screen(320px) { - width: 44px; - height: 44px; - } -} - -#menu { - display: none; - z-index: 1000; - - width: 80px; - position: fixed; - top: 0; - left: 0; - text-align: center; - background: #191919; - height: 100%; - - ul { - list-style: none; - margin: 0; - padding: 0; - - li { - - a { - padding: 10px 0; - color: white; - display: block; - text-decoration: none; - - &.active { - background: white; - color: black; - } - - .label { - display: block; - font-size: 12px; - } - } - } - - } -} - -/* body class for showing menu */ -.menu-showed #menu { - display: block; -} - -/* menu showing by default */ -@include min-screen(640px) { - #menu { - display: block; - } - /* body class for hiding menu */ - .menu-hidden #menu { - display: none; - } -}