Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /*
  2. * demo.css
  3. * File include item demo only specific css only
  4. ******************************************************************************/
  5. .menu .app-brand.demo {
  6. height: 64px;
  7. margin-top: 12px;
  8. }
  9. .app-brand-logo.demo svg {
  10. width: 22px;
  11. height: 38px;
  12. }
  13. .app-brand-text.demo {
  14. font-size: 1.75rem;
  15. letter-spacing: -0.5px;
  16. }
  17. /* ! For .layout-navbar-fixed added fix padding top to .layout-page */
  18. /* Detached navbar */
  19. .layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
  20. padding-top: 74px !important;
  21. }
  22. /* Default navbar */
  23. .layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
  24. padding-top: 64px !important;
  25. }
  26. .docs-page .layout-navbar-fixed.layout-wrapper:not(.layout-without-menu) .layout-page,
  27. .docs-page .layout-menu-fixed.layout-wrapper:not(.layout-without-menu) .layout-page {
  28. padding-top: 62px !important;
  29. }
  30. /* Navbar page z-index issue solution */
  31. .content-wrapper .navbar {
  32. z-index: auto;
  33. }
  34. /*
  35. * Content
  36. ******************************************************************************/
  37. .demo-blocks > * {
  38. display: block !important;
  39. }
  40. .demo-inline-spacing > * {
  41. margin: 1rem 0.375rem 0 0 !important;
  42. }
  43. /* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
  44. .demo-vertical-spacing > * {
  45. margin-top: 1rem !important;
  46. margin-bottom: 0 !important;
  47. }
  48. .demo-vertical-spacing.demo-only-element > :first-child {
  49. margin-top: 0 !important;
  50. }
  51. .demo-vertical-spacing-lg > * {
  52. margin-top: 1.875rem !important;
  53. margin-bottom: 0 !important;
  54. }
  55. .demo-vertical-spacing-lg.demo-only-element > :first-child {
  56. margin-top: 0 !important;
  57. }
  58. .demo-vertical-spacing-xl > * {
  59. margin-top: 5rem !important;
  60. margin-bottom: 0 !important;
  61. }
  62. .demo-vertical-spacing-xl.demo-only-element > :first-child {
  63. margin-top: 0 !important;
  64. }
  65. /* Dropdown buttons going out of small screens */
  66. @media (max-width: 576px) {
  67. #dropdown-variation-demo .btn-group .text-truncate {
  68. width: 231px;
  69. position: relative;
  70. }
  71. #dropdown-variation-demo .btn-group .text-truncate::after {
  72. position: absolute;
  73. top: 45%;
  74. right: 0.65rem;
  75. }
  76. }
  77. /*
  78. * Layout demo
  79. ******************************************************************************/
  80. .layout-demo-wrapper {
  81. display: -webkit-box;
  82. display: -ms-flexbox;
  83. display: flex;
  84. -webkit-box-align: center;
  85. -ms-flex-align: center;
  86. align-items: center;
  87. -webkit-box-orient: vertical;
  88. -webkit-box-direction: normal;
  89. -ms-flex-direction: column;
  90. flex-direction: column;
  91. margin-top: 1rem;
  92. }
  93. .layout-demo-placeholder img {
  94. width: 900px;
  95. }
  96. .layout-demo-info {
  97. text-align: center;
  98. margin-top: 1rem;
  99. }