common.css 767 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .w-120 {
  2. width: 120px;
  3. padding: 0px 15px;
  4. }
  5. .w-120-calc {
  6. width: -moz-calc(100% - 120px);
  7. width: -webkit-calc(100% - 120px);
  8. width: calc(100% - 120px);
  9. padding-right: 15px;
  10. }
  11. .col-md-offset-120 {
  12. margin-left: 120px;
  13. }
  14. @media (max-width: 768px) {
  15. .form-search.form-horizontal .control-label {
  16. padding-top: 7px;
  17. margin-bottom: 0;
  18. text-align: right;
  19. }
  20. }
  21. @media (max-width: 360px) {
  22. .form-search.form-horizontal .control-label,
  23. .form-search.form-horizontal .w-120-calc{
  24. float: none!important;
  25. width: auto!important;
  26. padding-left: 15px;
  27. }
  28. .form-search.form-horizontal .control-label {
  29. margin-bottom: 5px;
  30. }
  31. }
  32. .small-img {
  33. height: 50px;
  34. width: 80px;
  35. }