judeofuturism

[DORMANT] final project for a class on afrofuturism
git clone git://git.figbert.com/judeofuturism.git
Log | Files | Refs

global.css (430B)


      1 :root {
      2   color: rgb(0, 255, 0);
      3   background-color: black;
      4   font-family: monospace;
      5 }
      6 
      7 body {
      8   margin: 1rem 0 0 2rem;
      9 }
     10 
     11 h1 {
     12   margin-bottom: 0;
     13 }
     14 
     15 table {
     16   border-collapse: collapse;
     17 }
     18 
     19 td {
     20   padding-left: 0;
     21   padding-right: 0.5rem;
     22 }
     23 
     24 p {
     25   width: 40%;
     26 }
     27 
     28 header {
     29   padding-bottom: 1rem;
     30 }
     31 
     32 .blink {
     33   animation: blink 2s steps(2, start) infinite;
     34 }
     35 @keyframes blink {
     36   0% { opacity: 25%; }
     37   100% { opacity: 100%; }
     38 }