No edit summary
Tag: Manual revert
No edit summary
Line 48: Line 48:
.content-grid {
.content-grid {
   display: grid;
   display: grid;
   gap: 1rem;
   gap: 1.25rem;
   grid-template-columns: 1fr;
   grid-template-columns: 1fr;
   margin-top: 1em;
   margin-top: 1em;
   overflow: hidden;
   overflow: hidden;
   min-width: 0;
   min-width: 0;
}
@media screen and (min-width: 720px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
  }
}
}


Line 74: Line 68:
   background: #ffffff;
   background: #ffffff;
   border: 1px solid #d7dde6;
   border: 1px solid #d7dde6;
   padding: 1em;
   padding: 1.1em 1.25em;
   box-sizing: border-box;
   box-sizing: border-box;
   overflow: hidden;
   overflow: hidden;
Line 82: Line 76:


.content-section.wide {
.content-section.wide {
   grid-column: 1 / -1;
   grid-column: auto;
}
}


Line 196: Line 190:
   }
   }
}
}


/* Category buttons */
/* Category buttons */
Line 209: Line 202:
   align-items: center;
   align-items: center;
   gap: 0.5em;
   gap: 0.5em;
   padding: 0.65em 0.9em;
   padding: 0.65em 0.9em;
   border-radius: 8px;
   border-radius: 8px;
   background: #ffffff;
   background: #ffffff;
   border: 1px solid #d6dbe3;
   border: 1px solid #d6dbe3;
   color: #004080;
   color: #004080;
   font-weight: 700;
   font-weight: 700;
   text-decoration: none;
   text-decoration: none;
   box-sizing: border-box;
   box-sizing: border-box;
}
}