Advertisement
Guest User

Rashede

a guest
Jun 19th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.94 KB | None | 0 0
  1.  
  2.     @media only screen and (min-width: 1200px) {
  3.         .md-form{
  4.             float: right!important;
  5.             text-align: right!important;
  6.             width: 30%!important;
  7.         }
  8.         .custom-control {
  9.             margin-bottom: 15px;
  10.         }
  11.        
  12.     }
  13.  
  14.     @media only screen and (max-width: 1199px) {
  15.         .md-form{
  16.             float: right!important;
  17.             text-align: right!important;
  18.             width: 25%!important;
  19.         }
  20.     }
  21.    
  22.     @media only screen and (max-width: 991px) {
  23.         .md-form{
  24.             float: none!important;
  25.             text-align: left!important;
  26.             width: 50%!important;
  27.             margin-bottom: 13px!important;
  28.         }
  29.     }
  30.    
  31.     @media only screen and (max-width: 767px) {
  32.         .md-form{
  33.             float: none!important;
  34.             text-align: left!important;
  35.             width: 100%!important;
  36.             margin-bottom: 13px!important;
  37.         }
  38.        
  39.     }
  40.    
  41.     @media only screen and (max-width: 480px) {
  42.         .md-form{
  43.             float: none!important;
  44.             text-align: left!important;
  45.             width: 100%!important;
  46.             margin-bottom: 13px!important;
  47.         }
  48.        
  49.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement