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.

demo.css 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. @font-face {
  2. font-weight: normal;
  3. font-style: normal;
  4. font-family: 'codropsicons';
  5. src:url('../fonts/codropsicons/codropsicons.eot');
  6. src:url('../fonts/codropsicons/codropsicons.eot?#iefix') format('embedded-opentype'),
  7. url('../fonts/codropsicons/codropsicons.woff') format('woff'),
  8. url('../fonts/codropsicons/codropsicons.ttf') format('truetype'),
  9. url('../fonts/codropsicons/codropsicons.svg#codropsicons') format('svg');
  10. }
  11. *, *:after, *:before { -webkit-box-sizing: border-box; box-sizing: border-box; }
  12. .clearfix:before, .clearfix:after { display: table; content: ''; }
  13. .clearfix:after { clear: both; }
  14. body {
  15. background: #2f3238;
  16. color: #fff;
  17. font-weight: 400;
  18. font-size: 1em;
  19. font-family: 'Raleway', Arial, sans-serif;
  20. }
  21. a {
  22. outline: none;
  23. color: #3498db;
  24. text-decoration: none;
  25. }
  26. a:hover, a:focus {
  27. color: #528cb3;
  28. }
  29. section {
  30. padding: 1em;
  31. text-align: center;
  32. }
  33. .content {
  34. margin: 0 auto;
  35. max-width: 1000px;
  36. }
  37. .content > h2 {
  38. clear: both;
  39. margin: 0;
  40. padding: 4em 1% 0;
  41. color: #484B54;
  42. font-weight: 800;
  43. font-size: 1.5em;
  44. }
  45. .content > h2:first-child {
  46. padding-top: 0em;
  47. }
  48. /* Header */
  49. .codrops-header {
  50. margin: 0 auto;
  51. padding: 4em 1em;
  52. text-align: center;
  53. }
  54. .codrops-header h1 {
  55. margin: 0;
  56. font-weight: 800;
  57. font-size: 4em;
  58. line-height: 1.3;
  59. }
  60. .codrops-header h1 span {
  61. display: block;
  62. padding: 0 0 0.6em 0.1em;
  63. color: #74777b;
  64. font-weight: 300;
  65. font-size: 45%;
  66. }
  67. /* Demo links */
  68. .codrops-demos {
  69. clear: both;
  70. padding: 1em 0 0;
  71. text-align: center;
  72. }
  73. .content + .codrops-demos {
  74. padding-top: 5em;
  75. }
  76. .codrops-demos a {
  77. display: inline-block;
  78. margin: 0 5px;
  79. padding: 1em 1.5em;
  80. text-transform: uppercase;
  81. font-weight: bold;
  82. }
  83. .codrops-demos a:hover,
  84. .codrops-demos a:focus,
  85. .codrops-demos a.current-demo {
  86. background: #3c414a;
  87. color: #fff;
  88. }
  89. /* To Navigation Style */
  90. .codrops-top {
  91. width: 100%;
  92. text-transform: uppercase;
  93. font-weight: 800;
  94. font-size: 0.69em;
  95. line-height: 2.2;
  96. }
  97. .codrops-top a {
  98. display: inline-block;
  99. padding: 1em 2em;
  100. text-decoration: none;
  101. letter-spacing: 1px;
  102. }
  103. .codrops-top span.right {
  104. float: right;
  105. }
  106. .codrops-top span.right a {
  107. display: block;
  108. float: left;
  109. }
  110. .codrops-icon:before {
  111. margin: 0 4px;
  112. text-transform: none;
  113. font-weight: normal;
  114. font-style: normal;
  115. font-variant: normal;
  116. font-family: 'codropsicons';
  117. line-height: 1;
  118. speak: none;
  119. -webkit-font-smoothing: antialiased;
  120. }
  121. .codrops-icon-drop:before {
  122. content: "\e001";
  123. }
  124. .codrops-icon-prev:before {
  125. content: "\e004";
  126. }
  127. /* Related demos */
  128. .related {
  129. clear: both;
  130. padding: 6em 1em;
  131. font-size: 120%;
  132. }
  133. .related > a {
  134. display: inline-block;
  135. margin: 20px 10px;
  136. padding: 25px;
  137. border: 1px solid #4f7f90;
  138. text-align: center;
  139. }
  140. .related a:hover {
  141. border-color: #39545e;
  142. }
  143. .related a img {
  144. max-width: 100%;
  145. opacity: 0.8;
  146. }
  147. .related a:hover img,
  148. .related a:active img {
  149. opacity: 1;
  150. }
  151. .related a h3 {
  152. margin: 0;
  153. padding: 0.5em 0 0.3em;
  154. max-width: 300px;
  155. text-align: left;
  156. }
  157. @media screen and (max-width: 25em) {
  158. .codrops-header {
  159. font-size: 75%;
  160. }
  161. .codrops-icon span {
  162. display: none;
  163. }
  164. }