Advertisement
danine1

additional info form css

Mar 7th, 2018
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.49 KB | None | 0 0
  1. .twoColumnsWrapper {
  2.   display: grid;
  3.   grid-template-columns: 1fr 1fr;
  4.   grid-gap: 50px;
  5.   width: 100%;
  6.   padding: 15px;
  7.   .leftCol,
  8.   .rightCol {
  9.     width: 440px;
  10.   }
  11.   .licenses {
  12.     margin-bottom: 30px;
  13.   }
  14.   .safetyTraining {
  15.     width: 210px;
  16.   }
  17.   .checkups {
  18.     display: grid;
  19.     grid-template-columns: 1fr 1fr;
  20.     grid-gap: 20px;
  21.   }
  22.   .addInfoField {
  23.     margin-top: 50px;
  24.   }
  25.   @media screen and (max-width: 1000px) {
  26.     grid-template-columns: 1fr;
  27.   }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement