/* Currently 3 screen sizes supported : - micro: < 500px - tiny: < 850px - small: < 1200px - normal: >= 1200px Ex: @media screen and (max-width: @var) */ nav a { opacity: 0.8; cursor: pointer; } nav a:hover, nav a:focus { opacity: 1; } /* Menu */ #logo { position: relative; display: block; width: 100%; margin-bottom: 10px; opacity: 1; background: var(--logo-bg); transition: 0.15s ease; } @media screen and (max-width: 849px) { #logo { width: auto; height: 100%; margin-bottom: 0; } } #logo:hover, #logo:focus { background: var(--logo-active); } #logo:hover img, #logo:focus img { filter: drop-shadow(var(--logo-shadow)); } #logo img { display: block; height: 65px; margin: 0 auto; padding: 0; filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0)); transition: filter 0.15s ease; } @media screen and (max-width: 1199px) { #logo img { width: 60px; height: inherit; margin-bottom: -4.5px; } } @media screen and (max-width: 499px) { #logo img { width: 50px; } } #light-menu { position: fixed; z-index: 10; list-style: none; width: 110px; height: 100%; overflow-y: auto; margin: 0; padding: 0; text-indent: 0; font-size: 13px; background: var(--background); box-shadow: var(--shadow); } @media screen and (max-width: 849px) { #light-menu { position: unset; display: flex; flex-direction: row; align-items: center; width: 100%; height: 60px; overflow-x: auto; overflow-y: hidden; } } @media screen and (max-width: 499px) { #light-menu { height: 50px; } } #light-menu li { width: 100%; color: var(--text); } @media screen and (max-width: 849px) { #light-menu li { display: flex; flex-direction: column; align-items: center; flex-grow: 1; padding: 0 2px; font-size: 12px; } } #light-menu li > a { display: flex; flex-direction: column; flex-grow: 0; align-items: center; justify-content: center; width: 100%; height: 100%; margin: 20px 0; color: var(--text); transition: opacity 0.15s ease; /* because Chrome sucks */ /* Avatar */ } #light-menu li > a > img { display: block; width: 60px; flex-shrink: 0; flex-grow: 0; margin: 0 7px 5px 7px; border-radius: 10%; } @media screen and (max-width: 849px) { #light-menu li > a > img { width: 45px; margin: 0; } #light-menu li > a > img ~ div { display: none; } } @media screen and (max-width: 499px) { #light-menu li > a > img { width: 40px; } } #light-menu li > a > svg { display: block; width: 25px; flex-shrink: 0; flex-grow: 0; margin: 0 7px; } #light-menu li > a > svg > path { fill: var(--icons); } @media screen and (max-width: 499px) { #light-menu li > a > div { display: none; } } /* Overlay */ #menu { position: fixed; z-index: 5; left: -190px; width: 300px; /* default: left-to-right animation */ height: 100%; overflow-x: hidden; overflow-y: auto; font-size: 13px; background: var(--background); color: var(--text); box-shadow: var(--shadow); transition: 0.15s ease; /* Set class="scroll-animation" to menu to apply scroll animation */ /* Login form */ } @media screen and (max-width: 849px) { #menu { width: 100%; height: 0; overflow-x: hidden; font-family: NotoSans; transition: 0.1s ease; position: unset; left: unset; } } #menu.opened { left: 110px; } @media screen and (max-width: 849px) { #menu.opened { height: 100%; overflow-y: auto; left: unset; } } #menu.scroll-animation { left: 110px; width: 0; } #menu.scroll-animation.opened { width: 300px; } #menu > div { width: 300px; padding: 16px; display: none; } @media screen and (max-width: 849px) { #menu > div { width: 100%; padding-bottom: 2px; } } #menu > div.opened { display: block; } #menu h2 { margin: 0 0 20px 0; font-family: Cantarell; font-weight: bold; font-size: 18px; color: var(--text); display: flex; align-items: center; } @media screen and (max-width: 499px) { #menu h2 { font-size: 15px; } } #menu h2 a { margin: 0; font-size: inherit; opacity: inherit; } #menu h2 a:hover, #menu h2 a:focus { text-decoration: underline; } #menu h2 > svg { width: 32px; vertical-align: middle; margin-right: 8px; } @media screen and (max-width: 499px) { #menu h2 > svg { width: 24px; } } #menu h2 img { height: 48px; vertical-align: middle; margin-right: 10px; } #menu h3 { margin: 16px 0; font-family: Cantarell; font-weight: bold; font-size: 15px; color: var(--text); } #menu hr { margin: 15px 0; border: none; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } #menu ul { margin: 0; padding: 0; list-style: none; } #menu a, #menu li { display: block; margin: 10px 0; color: var(--text); transition: opacity 0.15s ease; } #menu li > a { display: inline; margin: 0; font-style: normal; font-size: 13px; } #menu a > img { vertical-align: middle; margin-right: 15px; } #menu a > svg { width: 20px; height: 20px; vertical-align: middle; margin-right: 10px; } #menu form { padding: 0 8%; } @media screen and (max-width: 849px) { #menu form { padding: 0; } } #menu form input[type="text"], #menu form input[type="password"] { margin: 8px 0; padding: 5px 2%; font-size: 14px; border: var(--input-border); background: var(--input-bg); color: var(--input-text); opacity: 0.8; } #menu form input[type="text"]:focus, #menu form input[type="password"]:focus { opacity: 1; } #menu form input[type="submit"] { width: 100%; margin: 8px 0 5px 0; } #menu form label { font-size: 13px; opacity: 0.8; }