payment gateway for rpn cn
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

dashboard.css 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. body {
  2. font-size: .875rem;
  3. }
  4. .feather {
  5. width: 16px;
  6. height: 16px;
  7. vertical-align: text-bottom;
  8. }
  9. /*
  10. * Sidebar
  11. */
  12. .sidebar {
  13. position: fixed;
  14. top: 0;
  15. bottom: 0;
  16. left: 0;
  17. z-index: 100; /* Behind the navbar */
  18. padding: 48px 0 0; /* Height of navbar */
  19. box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
  20. }
  21. .sidebar-sticky {
  22. position: relative;
  23. top: 0;
  24. height: calc(100vh - 48px);
  25. padding-top: .5rem;
  26. overflow-x: hidden;
  27. overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
  28. }
  29. @supports ((position: -webkit-sticky) or (position: sticky)) {
  30. .sidebar-sticky {
  31. position: -webkit-sticky;
  32. position: sticky;
  33. }
  34. }
  35. .sidebar .nav-link {
  36. font-weight: 500;
  37. color: #333;
  38. }
  39. .sidebar .nav-link .feather {
  40. margin-right: 4px;
  41. color: #999;
  42. }
  43. .sidebar .nav-link.active {
  44. color: #007bff;
  45. }
  46. .sidebar .nav-link:hover .feather,
  47. .sidebar .nav-link.active .feather {
  48. color: inherit;
  49. }
  50. .sidebar-heading {
  51. font-size: .75rem;
  52. text-transform: uppercase;
  53. }
  54. /*
  55. * Content
  56. */
  57. [role="main"] {
  58. padding-top: 48px; /* Space for fixed navbar */
  59. }
  60. /*
  61. * Navbar
  62. */
  63. .navbar-brand {
  64. padding-top: .75rem;
  65. padding-bottom: .75rem;
  66. font-size: 1rem;
  67. background-color: rgba(0, 0, 0, .25);
  68. box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);
  69. }
  70. .navbar .form-control {
  71. padding: .75rem 1rem;
  72. border-width: 0;
  73. border-radius: 0;
  74. }
  75. .form-control-dark {
  76. color: #fff;
  77. background-color: rgba(255, 255, 255, .1);
  78. border-color: rgba(255, 255, 255, .1);
  79. }
  80. .form-control-dark:focus {
  81. border-color: transparent;
  82. box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
  83. }
  84. /*
  85. * Utilities
  86. */
  87. .border-top { border-top: 1px solid #e5e5e5; }
  88. .border-bottom { border-bottom: 1px solid #e5e5e5; }