partsdb

electronic parts inventory
git clone https://git.e1e0.net/partsdb.git
Log | Files | Refs | README | LICENSE

style.css (731B)


      1 table {
      2   border: 1px solid black;
      3   border-collapse: collapse;
      4   width: 100%;
      5 }
      6 
      7 th, td {
      8   border: 1px solid black;
      9   border-collapse: collapse;
     10   padding: 15px;
     11   /* text-align: left; */
     12 }
     13 
     14 h1 {
     15   text-decoration: underline;
     16 }
     17 
     18 .field {
     19   font-weight: bold;
     20 }
     21 
     22 .category-list {
     23   grid-area: catList;
     24 }
     25 
     26 .storage-list {
     27   grid-area: storageList;
     28 }
     29 
     30 .index-logo {
     31   grid-area: indexLogo;
     32 }
     33 
     34 .index-title {
     35   grid-area: indexTitle;
     36 }
     37 
     38 .list-container {
     39   display: grid;
     40   column-gap: 50px;
     41    grid-template-areas: 'indexLogo indexTitle indexTitle indexTitle indexTitle indexTitle'
     42                         'catList catList catList storageList storageList storageList';
     43 }
     44 
     45 .footer {
     46   margin: 20px 0px 0px 5px;
     47   font-size: small;
     48 }