You are here

general-styles.css in Bootstrap Styles 1.0.x

@-webkit-keyframes hover-pop {
  50% {
    transform: scale(1.2);
  }
}

@keyframes hover-pop {
  50% {
    transform: scale(1.2);
  }
}

#drupal-off-canvas .form-type-checkbox,
#drupal-off-canvas .form-radios > div,
#layout-builder-modal .form-type-checkbox,
#layout-builder-modal .form-radios > div {
  padding: 0;
  margin: 0;
  width: auto;
}

#drupal-off-canvas .form-control,
#layout-builder-modal .form-control {
  border: 0;
}

#drupal-off-canvas .custom-control-input,
#layout-builder-modal .custom-control-input {
  opacity: 1;
  margin-top: 10px;
  margin-bottom: 10px;
}

#drupal-off-canvas .bs_flex,
#layout-builder-modal .bs_flex {
  display: flex;
}

#drupal-off-canvas .bs-justify-content-between,
#layout-builder-modal .bs-justify-content-between {
  justify-content: space-between;
}

#drupal-off-canvas .bs_row,
#layout-builder-modal .bs_row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

#drupal-off-canvas .bs_col,
#layout-builder-modal .bs_col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 0;
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

#drupal-off-canvas .bs_col--50,
#layout-builder-modal .bs_col--50 {
  flex: 50%;
  max-width: 50%;
}

#drupal-off-canvas .bs_col--100,
#layout-builder-modal .bs_col--100 {
  flex: 100%;
  max-width: 100%;
}

#drupal-off-canvas .bs-group-title,
#layout-builder-modal .bs-group-title {
  margin-left: 15px;
  display: flex;
  align-items: center;
}

#drupal-off-canvas .sr-only,
#layout-builder-modal .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

File

css/general-styles.css
View source
  1. @-webkit-keyframes hover-pop {
  2. 50% {
  3. transform: scale(1.2);
  4. }
  5. }
  6. @keyframes hover-pop {
  7. 50% {
  8. transform: scale(1.2);
  9. }
  10. }
  11. #drupal-off-canvas .form-type-checkbox,
  12. #drupal-off-canvas .form-radios > div,
  13. #layout-builder-modal .form-type-checkbox,
  14. #layout-builder-modal .form-radios > div {
  15. padding: 0;
  16. margin: 0;
  17. width: auto;
  18. }
  19. #drupal-off-canvas .form-control,
  20. #layout-builder-modal .form-control {
  21. border: 0;
  22. }
  23. #drupal-off-canvas .custom-control-input,
  24. #layout-builder-modal .custom-control-input {
  25. opacity: 1;
  26. margin-top: 10px;
  27. margin-bottom: 10px;
  28. }
  29. #drupal-off-canvas .bs_flex,
  30. #layout-builder-modal .bs_flex {
  31. display: flex;
  32. }
  33. #drupal-off-canvas .bs-justify-content-between,
  34. #layout-builder-modal .bs-justify-content-between {
  35. justify-content: space-between;
  36. }
  37. #drupal-off-canvas .bs_row,
  38. #layout-builder-modal .bs_row {
  39. display: flex;
  40. flex-wrap: wrap;
  41. margin-right: -15px;
  42. margin-left: -15px;
  43. }
  44. #drupal-off-canvas .bs_col,
  45. #layout-builder-modal .bs_col {
  46. -ms-flex-preferred-size: 0;
  47. flex-basis: 0;
  48. -webkit-box-flex: 1;
  49. -ms-flex-positive: 1;
  50. flex-grow: 1;
  51. min-width: 0;
  52. max-width: 100%;
  53. padding-right: 15px;
  54. padding-left: 15px;
  55. }
  56. #drupal-off-canvas .bs_col--50,
  57. #layout-builder-modal .bs_col--50 {
  58. flex: 50%;
  59. max-width: 50%;
  60. }
  61. #drupal-off-canvas .bs_col--100,
  62. #layout-builder-modal .bs_col--100 {
  63. flex: 100%;
  64. max-width: 100%;
  65. }
  66. #drupal-off-canvas .bs-group-title,
  67. #layout-builder-modal .bs-group-title {
  68. margin-left: 15px;
  69. display: flex;
  70. align-items: center;
  71. }
  72. #drupal-off-canvas .sr-only,
  73. #layout-builder-modal .sr-only {
  74. position: absolute;
  75. width: 1px;
  76. height: 1px;
  77. padding: 0;
  78. margin: -1px;
  79. overflow: hidden;
  80. clip: rect(0, 0, 0, 0);
  81. border: 0;
  82. }