Difference between revisions of "Common.css"

From Pain Reprocessing Therapy Wiki
Jump to navigation Jump to search
Line 18: Line 18:
 
     width: 100% !important;
 
     width: 100% !important;
 
   }
 
   }
 +
}
 +
h1 {
 +
        color: red !important;
 +
        background: yellow;
 +
        font-size:200%
 
}
 
}

Revision as of 21:59, 14 July 2021

/* Create two equal columns that floats next to each other */ .respcolumn {

 float: left !important;
 width: 50% !important;
 padding: 10px;
 box-sizing: border-box !important;
 display: none !important;

} /* Clear floats after the columns */ .resprow:after {

 content: "";
 display: table;
 clear: both;

} /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */ @media screen and (max-width: 800px) {

 .respcolumn {
   width: 100% !important;
 }

} h1 {

       color: red !important;
       background: yellow;
       font-size:200%

}