myheats

Live heats, scoring and leaderboard for sport events
git clone https://git.in0rdr.ch/myheats.git
Log | Files | Refs | Pull requests | README | LICENSE

index.css (610B)


      1 * {
      2   padding: 0;
      3   margin: 0;
      4   /* Include border and padding in element size (form fields):
      5    * https://developer.mozilla.org/en-US/docs/Web/CSS/box-sizing */
      6   box-sizing: border-box;
      7   font-family: monospace;
      8   font-size: 18px;
      9 }
     10 
     11 main {
     12   overflow-x: auto;
     13 }
     14 
     15 a {
     16   color: black;
     17 }
     18 
     19 h1, h2, p {
     20   padding: 10px 20px;
     21 }
     22 
     23 button, input {
     24   width: 95%;
     25   padding: 5px 10px;
     26   border-radius: 3px;
     27   box-shadow: 0 1px #b1b0b6;
     28   background: white;
     29   border: 1px solid #f3f2f7;
     30   color: black;
     31   white-space: nowrap;
     32 }
     33 
     34 button {
     35   cursor: pointer;
     36   text-align: center;
     37 }
     38 
     39 button:disabled {
     40   display: none;
     41 }