page.css 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399
  1. /*!
  2. * Start Bootstrap - SB Admin 2 Bootstrap Admin Theme (http://startbootstrap.com)
  3. * Code licensed under the Apache License v2.0.
  4. * For details, see http://www.apache.org/licenses/LICENSE-2.0.
  5. */
  6. body {
  7. background-color: #f8f8f8;
  8. }
  9. .example {
  10. padding: .625rem 1.825rem .625rem 2.5rem;
  11. border: 1px #ccc dashed;
  12. position: relative;
  13. margin: 0 0 .625rem 0;
  14. background-color: #ffffff;
  15. }
  16. dl dt,
  17. dl dd {
  18. line-height: 1.25rem;
  19. }
  20. dl dt {
  21. font-style: normal;
  22. font-weight: 700;
  23. }
  24. dl dd {
  25. margin-left: .9375rem;
  26. }
  27. dl.horizontal dt {
  28. float: left;
  29. width: 10rem;
  30. overflow: hidden;
  31. clear: left;
  32. text-align: right;
  33. text-overflow: ellipsis;
  34. white-space: nowrap;
  35. }
  36. dl.horizontal dd {
  37. margin-left: 11.25rem;
  38. }
  39. #wrapper {
  40. width: 100%;
  41. }
  42. #page-wrapper {
  43. padding: 0 15px;
  44. min-height: 568px;
  45. background-color: #fff;
  46. }
  47. @media(min-width:768px) {
  48. #page-wrapper {
  49. position: inherit;
  50. margin: 0 0 0 250px;
  51. padding: 0 30px;
  52. border-left: 1px solid #e7e7e7;
  53. }
  54. }
  55. .navbar-top-links {
  56. margin-right: 0;
  57. }
  58. .navbar-top-links li {
  59. display: inline-block;
  60. }
  61. .navbar-top-links li:last-child {
  62. margin-right: 15px;
  63. }
  64. .navbar-top-links li a {
  65. padding: 15px;
  66. min-height: 50px;
  67. }
  68. .navbar-top-links .dropdown-menu li {
  69. display: block;
  70. }
  71. .navbar-top-links .dropdown-menu li:last-child {
  72. margin-right: 0;
  73. }
  74. .navbar-top-links .dropdown-menu li a {
  75. padding: 3px 20px;
  76. min-height: 0;
  77. }
  78. .navbar-top-links .dropdown-menu li a div {
  79. white-space: normal;
  80. }
  81. .navbar-top-links .dropdown-messages,
  82. .navbar-top-links .dropdown-tasks,
  83. .navbar-top-links .dropdown-alerts {
  84. width: 310px;
  85. min-width: 0;
  86. }
  87. .navbar-top-links .dropdown-messages {
  88. margin-left: 5px;
  89. }
  90. .navbar-top-links .dropdown-tasks {
  91. margin-left: -59px;
  92. }
  93. .navbar-top-links .dropdown-alerts {
  94. margin-left: -123px;
  95. }
  96. .navbar-top-links .dropdown-user {
  97. right: 0;
  98. left: auto;
  99. }
  100. .sidebar .sidebar-nav.navbar-collapse {
  101. padding-right: 0;
  102. padding-left: 0;
  103. background-color: #71b1d1;
  104. color: #ffffff;
  105. position: relative;
  106. width: 100%;
  107. padding: 0;
  108. margin: 0;
  109. list-style: none inside none;
  110. }
  111. .sidebar .sidebar-search {
  112. padding: 15px;
  113. }
  114. .sidebar ul li {
  115. border-bottom: 1px solid #e7e7e7;
  116. }
  117. .sidebar ul li a.active {
  118. background-color: #ffffff;
  119. color: #ffffff;
  120. }
  121. .sidebar a{
  122. color: #fff;
  123. }
  124. .sidebar .arrow {
  125. float: right;
  126. }
  127. .sidebar .fa.arrow:before {
  128. content: "\f104";
  129. }
  130. .sidebar .active>a>.fa.arrow:before {
  131. content: "\f107";
  132. }
  133. .sidebar .nav-second-level li,
  134. .sidebar .nav-third-level li {
  135. border-bottom: 0!important;
  136. }
  137. .sidebar .nav-second-level li a {
  138. padding-left: 37px;
  139. }
  140. .sidebar .nav-third-level li a {
  141. padding-left: 52px;
  142. }
  143. @media(min-width:768px) {
  144. .sidebar {
  145. z-index: 1;
  146. position: absolute;
  147. width: 250px;
  148. margin-top: 51px;
  149. }
  150. .navbar-top-links .dropdown-messages,
  151. .navbar-top-links .dropdown-tasks,
  152. .navbar-top-links .dropdown-alerts {
  153. margin-left: auto;
  154. }
  155. }
  156. .btn-outline {
  157. color: inherit;
  158. background-color: transparent;
  159. transition: all .5s;
  160. }
  161. .btn-primary.btn-outline {
  162. color: #428bca;
  163. }
  164. .btn-success.btn-outline {
  165. color: #5cb85c;
  166. }
  167. .btn-info.btn-outline {
  168. color: #5bc0de;
  169. }
  170. .btn-warning.btn-outline {
  171. color: #f0ad4e;
  172. }
  173. .btn-danger.btn-outline {
  174. color: #d9534f;
  175. }
  176. .btn-primary.btn-outline:hover,
  177. .btn-success.btn-outline:hover,
  178. .btn-info.btn-outline:hover,
  179. .btn-warning.btn-outline:hover,
  180. .btn-danger.btn-outline:hover {
  181. color: #fff;
  182. }
  183. .chat {
  184. margin: 0;
  185. padding: 0;
  186. list-style: none;
  187. }
  188. .chat li {
  189. margin-bottom: 10px;
  190. padding-bottom: 5px;
  191. border-bottom: 1px dotted #999;
  192. }
  193. .chat li.left .chat-body {
  194. margin-left: 60px;
  195. }
  196. .chat li.right .chat-body {
  197. margin-right: 60px;
  198. }
  199. .chat li .chat-body p {
  200. margin: 0;
  201. }
  202. .panel .slidedown .glyphicon,
  203. .chat .glyphicon {
  204. margin-right: 5px;
  205. }
  206. .chat-panel .panel-body {
  207. height: 350px;
  208. overflow-y: scroll;
  209. }
  210. .login-panel {
  211. margin-top: 25%;
  212. }
  213. .flot-chart {
  214. display: block;
  215. height: 400px;
  216. }
  217. .flot-chart-content {
  218. width: 100%;
  219. height: 100%;
  220. }
  221. .dataTables_wrapper {
  222. position: relative;
  223. clear: both;
  224. }
  225. table.dataTable thead .sorting,
  226. table.dataTable thead .sorting_asc,
  227. table.dataTable thead .sorting_desc,
  228. table.dataTable thead .sorting_asc_disabled,
  229. table.dataTable thead .sorting_desc_disabled {
  230. background: 0 0;
  231. }
  232. table.dataTable thead .sorting_asc:after {
  233. content: "\f0de";
  234. float: right;
  235. font-family: fontawesome;
  236. }
  237. table.dataTable thead .sorting_desc:after {
  238. content: "\f0dd";
  239. float: right;
  240. font-family: fontawesome;
  241. }
  242. table.dataTable thead .sorting:after {
  243. content: "\f0dc";
  244. float: right;
  245. font-family: fontawesome;
  246. color: rgba(50,50,50,.5);
  247. }
  248. .btn-circle {
  249. width: 30px;
  250. height: 30px;
  251. padding: 6px 0;
  252. border-radius: 15px;
  253. text-align: center;
  254. font-size: 12px;
  255. line-height: 1.428571429;
  256. }
  257. .btn-circle.btn-lg {
  258. width: 50px;
  259. height: 50px;
  260. padding: 10px 16px;
  261. border-radius: 25px;
  262. font-size: 18px;
  263. line-height: 1.33;
  264. }
  265. .btn-circle.btn-xl {
  266. width: 70px;
  267. height: 70px;
  268. padding: 10px 16px;
  269. border-radius: 35px;
  270. font-size: 24px;
  271. line-height: 1.33;
  272. }
  273. .show-grid [class^=col-] {
  274. padding-top: 10px;
  275. padding-bottom: 10px;
  276. border: 1px solid #ddd;
  277. background-color: #eee!important;
  278. }
  279. .show-grid {
  280. margin: 15px 0;
  281. }
  282. .huge {
  283. font-size: 40px;
  284. }
  285. .panel-green {
  286. border-color: #5cb85c;
  287. }
  288. .panel-green .panel-heading {
  289. border-color: #5cb85c;
  290. color: #fff;
  291. background-color: #5cb85c;
  292. }
  293. .panel-green a {
  294. color: #5cb85c;
  295. }
  296. .panel-green a:hover {
  297. color: #3d8b3d;
  298. }
  299. .panel-red {
  300. border-color: #d9534f;
  301. }
  302. .panel-red .panel-heading {
  303. border-color: #d9534f;
  304. color: #fff;
  305. background-color: #d9534f;
  306. }
  307. .panel-red a {
  308. color: #d9534f;
  309. }
  310. .panel-red a:hover {
  311. color: #b52b27;
  312. }
  313. .panel-yellow {
  314. border-color: #f0ad4e;
  315. }
  316. .panel-yellow .panel-heading {
  317. border-color: #f0ad4e;
  318. color: #fff;
  319. background-color: #f0ad4e;
  320. }
  321. .panel-yellow a {
  322. color: #f0ad4e;
  323. }
  324. .panel-yellow a:hover {
  325. color: #df8a13;
  326. }