Template:Main Page/styles.css

From VNDev Wiki
Revision as of 19:47, 23 June 2022 by Arsym (talk | contribs)
.mp_grid{
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 10px;
}

.mp_grid_box{
  border: 1px solid #ccc;
  border-radius: 10px;
  padding:10px;
}

.mp_grid .stretch{
  grid-column-start: 1;
  grid-column-end: 3;
}

.mp_grid h2{
  margin-top: 10px;
}

/* Small screens (mobile) */
@media screen and (max-width: 850px) {
  .mp_grid{
    grid-template-columns: 100%;
  }
}