hivedav

A curlable free/busy scheduler with CalDAV integration
git clone https://git.in0rdr.ch/hivedav.git
Log | Files | Refs | Pull requests | README | LICENSE

index.css (400B)


      1 * {
      2   padding: 0;
      3   margin: 0;
      4   font-family: monospace;
      5   font-size: 18px;
      6 }
      7 
      8 a {
      9   color: black;
     10 }
     11 
     12 h1, h2, p {
     13   padding: 10px 20px;
     14 }
     15 
     16 button, input {
     17   width: 95%;
     18   padding: 5px 10px;
     19   border-radius: 3px;
     20   box-shadow: 0 1px #b1b0b6;
     21   background: white;
     22   border: 1px solid #f3f2f7;
     23   color: black;
     24 }
     25 
     26 button {
     27   cursor: pointer;
     28   text-align: center;
     29 }
     30 
     31 button:disabled {
     32   display: none;
     33 }