Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. html {
  2. height: 100%;
  3. }
  4. body {
  5. font-family: 'Source Sans Pro', sans-serif;
  6. font-size: 14px;
  7. }
  8. /* Form styles */
  9. #msform {
  10. width: 400px;
  11. margin: 50px auto;
  12. text-align: center;
  13. position: relative;
  14. }
  15. #msform fieldset {
  16. background: #fff;
  17. border: 0 none;
  18. border-radius: 5px;
  19. box-shadow: 0 0 30px 1px rgba(0, 0, 0, 0.1);
  20. padding: 20px;
  21. box-sizing: border-box;
  22. width: 80%;
  23. margin: 0 auto;
  24. left:0%;
  25. right: 0%;
  26. position: relative;
  27. }
  28. /* Hide all except first fieldset */
  29. #msform fieldset:not(:first-of-type) {
  30. display: none;
  31. }
  32. img.logo {
  33. max-width: 120px;
  34. margin-bottom: 20px;
  35. }
  36. #msform p {
  37. color: #8b9ab0;
  38. font-size: 12px;
  39. }
  40. /* Inputs */
  41. /* Buttons */
  42. #msform .action-button {
  43. width: 49%;
  44. text-transform: uppercase;
  45. background: #e74c3c;
  46. font-weight: bold;
  47. color: white;
  48. border: 1px solid transparent;
  49. border-radius: 3px;
  50. cursor: pointer;
  51. padding: 12px 5px;
  52. margin: 10px 0;
  53. font-size: 16px;
  54. display: inline-block;
  55. -webkit-transition: all 0.2s;
  56. -moz-transition: all 0.2s;
  57. transition: all 0.2s;
  58. }
  59. #msform .previous.action-button {
  60. background: #fff;
  61. border: 1px solid #7bbdf3;
  62. color: #7bbdf3;
  63. }
  64. /* Headings */
  65. .fs-title {
  66. font-size: 26px;
  67. font-weight: 200;
  68. color: #434a54;
  69. margin-bottom: 20px;
  70. }
  71. .fs-subtitle {
  72. font-weight: 400;
  73. color: #434a54;
  74. margin-bottom: 20px;
  75. line-height: 1.4
  76. }
  77. #msform #progressbar li{
  78. font-size: 13px;
  79. text-transform: capitalize;
  80. }
  81. /* Progressbar */
  82. #progressbar {
  83. margin-bottom: 30px;
  84. overflow: hidden;
  85. /*CSS counters to number the steps*/
  86. counter-reset: step;
  87. }
  88. #progressbar li {
  89. list-style-type: none;
  90. color: #8b9ab0;
  91. text-transform: uppercase;
  92. font-size: 9px;
  93. width: 33.33%;
  94. float: left;
  95. position: relative;
  96. }
  97. #progressbar li.active {
  98. color: #e74c3c;
  99. }
  100. #progressbar li:before {
  101. content: counter(step);
  102. counter-increment: step;
  103. width: 20px;
  104. line-height: 20px;
  105. display: block;
  106. font-size: 10px;
  107. color: #333;
  108. background: white;
  109. border-radius: 3em;
  110. margin: 0 auto 5px auto;
  111. }
  112. /* Progressbar connectors */
  113. #progressbar li:after {
  114. content: '';
  115. width: 100%;
  116. height: 2px;
  117. background: white;
  118. position: absolute;
  119. left: -50%;
  120. top: 9px;
  121. z-index: -1;
  122. }
  123. #progressbar li:first-child:after {
  124. /* connector not needed before the first step */
  125. content: none;
  126. }
  127. /* Marking active/completed steps green */
  128. /*The number of the step and the connector before it = green*/
  129. #progressbar li.active:before, #progressbar li.active:after{
  130. background: #e74c3c;
  131. color: white;
  132. }