Template:UMVC3 Notation/styles.css: Difference between revisions

Template page
(Created page with "table.firstcolumnalightcenter td:first-child { text-align: center; }")
 
No edit summary
 
(23 intermediate revisions by the same user not shown)
Line 1: Line 1:
table.firstcolumnalightcenter td:first-child {
table.dict td:first-child {
     text-align: center;
     text-align: center;
    width: 20%;
}
@media (min-width: 900px) {
.NotationBox {
  border: solid 3px;
  margin: auto;
  width: 70%;
  display: flex;
}
}
@media (max-width: 900px) {
.NotationBox {
  flex-direction: column;
}
}
}

Latest revision as of 17:45, 12 August 2022

table.dict td:first-child {
    text-align: center;
    width: 20%;
}

@media (min-width: 900px) {
 .NotationBox {
   border: solid 3px;
   margin: auto;
   width: 70%; 
   display: flex;
 }
}

@media (max-width: 900px) {
 .NotationBox {
   flex-direction: column;
 }
}