123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- /*
- 👾 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;
- }
|