1001

static P2P wikisoft.
Log | Files | Refs | README

style.css (1205B)


      1 @import url('fonts/stylesheet.css');
      2 @import url('https://rsms.me/inter/inter-ui.css');
      3 
      4 @import url('components/typography.css');
      5 @import url('components/layout.css');
      6 @import url('components/volkrom.css');
      7 @import url('components/colour.css');
      8 
      9 html {
     10 	-ms-word-wrap: break-word;
     11 	word-wrap: break-word;
     12 	height: 100%;
     13 	overflow: auto;
     14 }
     15 
     16 body {
     17 	height: 100%;
     18 
     19 	font-family: "Inter UI";
     20 	font-size: 16px;
     21 	line-height: 1.125;
     22 	color: #fff;
     23 	padding: 0;
     24 	margin: 0;
     25 	background-color: #000;
     26 	overflow-x: hidden;
     27 }
     28 
     29 ::-webkit-scrollbar {
     30 	width: 4px;
     31 	background-color: #000;
     32 }
     33 ::-webkit-scrollbar-thumb {
     34 	background-color: rgba(255,255,255,0.12);
     35 }
     36 
     37 ::selection {
     38 	color: black;
     39 	background: rgba(255,255,255,0.99);
     40 }
     41 *::selection {
     42 	color: black;
     43 	background: rgba(255,255,255,0.99);
     44 }
     45 ::-moz-selection {
     46 	color: black;
     47 	background: rgba(255,255,255,0.99);
     48 }
     49 *::-moz-selection {
     50 	color: black;
     51 	background: rgba(255,255,255,0.99);
     52 }
     53 
     54 * {
     55 	cursor:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAPCAMAAAAxmgQeAAAACVBMVEX///8AAAD///9+749PAAAAAXRSTlMAQObYZgAAAD5JREFUGNN1j9EKADAIAnP//9GjFq6w7iU4DNRsB06cb44TJ+UzYUcniqnqoA6ag/62JhjKIU0rxx1lKveuXJ5UAQs/G/2vAAAAAElFTkSuQmCC) 9 9, auto !important;
     56 }