fmctutorial

An in-depth FMC tutorial
git clone https://git.tronto.net/fmctutorial
Download | Log | Files | Refs | README | LICENSE

fmcsolves.css (447B)


      1 html,
      2 body {
      3   display: grid;
      4   font-family: sans-serif;
      5   box-sizing: border-box;
      6   height: 100%;
      7   padding: 0;
      8 }
      9 
     10 body {
     11   background-color: rgb(255, 245, 235);
     12   place-content: center;
     13   gap: 1em;
     14   padding: 1em;
     15 }
     16 
     17 h1 {
     18   text-align: center;
     19 }
     20 
     21 section {
     22   background-color: white;
     23   box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.25);
     24   min-width: 40em;
     25   padding: 1em 2em 2em;
     26   display: grid;
     27 }
     28 
     29 .icon {
     30   height: 2em;
     31   vertical-align: middle;
     32 }