site

my website
git clone https://xfnw.ttm.sh/git/site.git
Log | Files | Refs

xfnw.css (992B)


      1 /* ~xfnw's css! */
      2 /* gpl affero v3 */
      3 body {
      4 background: #141415;
      5 font-family: sans-serif;
      6 color: #cdcdcd;
      7 max-width: 700px;
      8 margin: 0 auto;
      9 padding:10px;
     10 }
     11 
     12 h1, h2, h3 {
     13 	font-weight: 100;
     14 }
     15 
     16 a {
     17 text-decoration: none;
     18 color: #3291FF;
     19 }
     20 
     21 a:hover {
     22 text-decoration: underline;
     23 }
     24 
     25 
     26 code, kbd, pre, .flex div {
     27 background: #222;
     28 color: #eee;
     29 }
     30 
     31 pre, .flex div {
     32 padding: 5px;
     33 overflow:auto;
     34 }
     35 
     36 mark {
     37 	background-color: #dc5;
     38 }
     39 
     40 @font-face {
     41 	font-family: 'VT323';
     42 	src: url(https://xfnw.ttm.sh/assets/PressStart2P-Regular.ttf);
     43 }
     44 
     45 
     46 summary {
     47 	cursor: pointer;
     48 	padding: 10px;
     49 }
     50 
     51 th, summary {
     52 	background-color: #222;
     53 }
     54 
     55 th, td, details {
     56 	border: 1px solid #222;
     57 }
     58 th, td {
     59 	padding: 5px;
     60 }
     61 
     62 table, details *:not(summary) {
     63 	border-collapse: collapse;
     64 	margin: 10px;
     65 }
     66 
     67 .flex {
     68 	display: flex;
     69 	flex-wrap: wrap;
     70 }
     71 
     72 .flex div {
     73 	display:flex;
     74 	min-width: 10em;
     75 	width: 100%;
     76 	margin: 10px;
     77 	flex: 1 1 0;
     78 	flex-direction: column;
     79 }
     80 
     81 .flex div h3 {
     82 	margin: 0;
     83 }
     84 .flex div p {
     85 	flex: 1 1 0;
     86 }
     87