No Description

_misc.scss 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. /* Animations */
  2. .nav-pills .nav-link,
  3. .navbar,
  4. .nav-tabs .nav-link,
  5. .sidebar .nav a,
  6. .sidebar .nav a i,
  7. .sidebar .nav p,
  8. .navbar-collapse .navbar-nav .nav-link,
  9. .animation-transition-general,
  10. .tag,
  11. .tag [data-role="remove"],
  12. .animation-transition-general{
  13. @include transitions($general-transition-time, $transition-ease);
  14. }
  15. //transition for dropdown caret
  16. .bootstrap-switch-label:before,
  17. .caret{
  18. @include transitions($fast-transition-time, $transition-ease);
  19. }
  20. .dropdown-toggle[aria-expanded="true"]:after,
  21. a[data-toggle="collapse"][aria-expanded="true"] .caret,
  22. .card-collapse .card a[data-toggle="collapse"][aria-expanded="true"] i,
  23. .card-collapse .card a[data-toggle="collapse"].expanded i{
  24. @include rotate-180();
  25. }
  26. .caret{
  27. width: 0;
  28. height: 0;
  29. vertical-align: middle;
  30. border-top: 4px dashed;
  31. border-right: 4px solid transparent;
  32. border-left: 4px solid transparent;
  33. margin-top: -5px;
  34. position: absolute;
  35. top: 30px;
  36. margin-left: 5px;
  37. }
  38. .pull-left{
  39. float: left;
  40. }
  41. .pull-right{
  42. float: right;
  43. }
  44. // card user profile page
  45. .card {
  46. form {
  47. label + .form-control {
  48. margin-bottom: 20px;
  49. }
  50. }
  51. }
  52. .card {
  53. .map-title {
  54. color: $white;
  55. }
  56. &.card-chart {
  57. .gmnoprint,
  58. .gm-style-cc {
  59. display: none !important;
  60. }
  61. }
  62. }
  63. // documentation
  64. .bd-docs {
  65. h1,h2,h3,h4,h5,h6,p,ul li,ol li{
  66. color:#2c2c2c;
  67. }
  68. .bd-content>table>thead>tr>th {
  69. color: $black;
  70. }
  71. .blockquote, .blockquote p, .card p{
  72. color: rgba($white,0.8);
  73. }
  74. .bd-example {
  75. background: linear-gradient(#1e1e2f,#1e1e24);
  76. }
  77. .navbar {
  78. border-top: none;
  79. .navbar-nav .nav-link {
  80. color: rgba(255,255,255,.8) !important;
  81. }
  82. }
  83. .bd-example {
  84. .btn{
  85. margin: 4px 0;
  86. }
  87. .btn .badge {
  88. display: inline-block;
  89. }
  90. .tim-icons{
  91. color: $white;
  92. }
  93. .popover .popover-header {
  94. color: hsla(0,0%,71%,.6);
  95. }
  96. .popover-body {
  97. p {
  98. color: $gray-900;
  99. }
  100. }
  101. &.tooltip-demo p{
  102. color: rgba($white,.8);
  103. }
  104. }
  105. .card.card-body,
  106. .card .card-body {
  107. color: hsla(0,0%,100%,.8);
  108. }
  109. label,
  110. .form-check {
  111. color: hsla(0,0%,100%,.8);
  112. }
  113. .form-check + .btn {
  114. margin-top: 20px;
  115. }
  116. .bd-example,
  117. table {
  118. thead th {
  119. color: hsla(0,0%,100%,.8);
  120. }
  121. h1, h2, h3, h4, h5, h6,
  122. .h1, .h2, .h3, .h4, .h5, .h6 {
  123. color: hsla(0,0%,100%,.8);
  124. }
  125. .datepicker{
  126. thead th, table thead th,.tim-icons{
  127. color: $primary;
  128. }
  129. }
  130. .picker-switch .tim-icons{
  131. color: $primary;
  132. }
  133. }
  134. .footer {
  135. .container-fluid > nav {
  136. display: inline-block;
  137. }
  138. }
  139. }
  140. .modal.show .modal-dialog {
  141. -webkit-transform: translate(0,30%);
  142. transform: translate(0,30%);
  143. }
  144. code {
  145. color: $pink;
  146. }
  147. @media screen and (max-width: 991px){
  148. .profile-photo .profile-photo-small{
  149. margin-left: -2px;
  150. }
  151. .button-dropdown{
  152. display: none;
  153. }
  154. #searchModal .modal-dialog{
  155. margin: 20px;
  156. }
  157. #minimizeSidebar{
  158. display: none;
  159. }
  160. }
  161. @media screen and (max-width: 768px){
  162. .landing-page .section-story-overview .image-container:nth-child(2){
  163. margin-left: 0;
  164. margin-bottom: 30px;
  165. }
  166. }
  167. @media screen and (max-width: 576px){
  168. .page-header{
  169. .container h6.category-absolute{
  170. width: 90%;
  171. }
  172. }
  173. .form-horizontal .col-form-label, .form-horizontal .label-on-right{
  174. text-align: inherit;
  175. padding-top: 0;
  176. code{
  177. padding: 0 10px;
  178. }
  179. }
  180. }