/* 👾 Cute Useless Robot CSS theme (´・ω・`) Note: This css theme is designed to be completely off-grid, do not include url or external resources */ @font-face { font-family: 'mulishB'; src: url('src/Mulish-Bold.ttf') format('truetype'), /* Safari, Android, iOS */ } @font-face { font-family: 'mulishR'; src: url('src/Mulish-Regular.ttf') format('truetype'), /* Safari, Android, iOS */ } :root{ --theme-base: #000000; --theme-dark: #141414; --theme-divider: #252525; --theme-dark-alt: #282828; --theme-active: #230046; --theme-primary: #E8E9EB; --theme-secondary: #320064; --theme-text-color: white; } body{ margin: 0 !important; font-family: 'mulishR'; color: var(--theme-text-color); background-color: var(--theme-dark); } /* Global CSS Rules */ .button{ border: 1px solid transparent; background-color: transparent; transition: background-color ease-in-out 0.1s, opacity ease-in-out 0.1s; cursor: pointer; } .button:hover{ background-color: rgba(255,255,255,0.1); opacity: 0.8; } .button .btnicon{ width: 100%; height: 100%; } .container{ padding: 0.6em; padding-left: 1.2em; padding-right: 1.2em; width: 100%; position: relative; box-sizing: border-box; } .header{ display: flex; align-items: center; } .header img { margin-right: 10px; } .divider{ width: 100%; margin-top: 1em; border-bottom: 1px solid var(--theme-divider); } a:link { text-decoration: none; } /* Side bar */ #sidebarWrapper{ width: 100%; height: 100%; position: relative; display:none; } #blurcover{ width: 100%; height: 100%; position: fixed; top:0; right:0; background-color: rgba(0,0,0,0.7); } #sidebar{ height: 100vh; position: fixed; right: 0; top: 0; width: 250px; background-color: var(--theme-dark-alt); padding-top: 1em; box-sizing: border-box; } #sidebar .item{ width: 100%; padding: 0.6em; font-size: 1em; display: flex; align-items: center; color: white; } #sidebar .item.clickable{ cursor: pointer; } #sidebar .item img{ margin-right: 0.6em; } #sidebar .item.clickable:hover{ background-color: var( --theme-active); } /* Top Menu */ #menu{ background-color: var(--theme-base); color: white; } #menu .logo{ font-size: 1.5em; font-family: 'mulishB'; } #menu .togglemenu{ position: absolute; right: 1.2em; top: 0.4em; height: 38px; width: 38px; }