ddoc.css 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. body{
  2. padding: 0px 10px;
  3. overflow-X: hidden;
  4. background: #F8F8F8;
  5. }
  6. .table-item{
  7. }
  8. #content{
  9. border: 1px solid #DDDDDD;
  10. background: #fff;
  11. margin-top: 10px;
  12. margin-bottom: 10px;
  13. padding-left: 30px;
  14. padding-right: 30px;
  15. }
  16. footer{
  17. margin: 30px auto;
  18. }
  19. #auth{
  20. text-align: center;
  21. margin-bottom: 20px;
  22. }
  23. /*-------------------------------*/
  24. /* VARIABLES */
  25. /*-------------------------------*/
  26. body {
  27. position: relative;
  28. overflow-x: hidden;
  29. }
  30. body,
  31. html {
  32. height: 100%;
  33. }
  34. .nav .open > a {
  35. background-color: transparent;
  36. }
  37. .nav .open > a:hover {
  38. background-color: #583e7e;
  39. }
  40. .nav .open > a:focus {
  41. background-color: #583e7e;
  42. }
  43. /*-------------------------------*/
  44. /* Wrappers */
  45. /*-------------------------------*/
  46. #wrapper {
  47. -moz-transition: all 0.5s ease;
  48. -o-transition: all 0.5s ease;
  49. -webkit-transition: all 0.5s ease;
  50. padding-left: 0;
  51. transition: all 0.5s ease;
  52. }
  53. #wrapper.toggled {
  54. padding-left: 220px;
  55. }
  56. #wrapper.toggled #sidebar-wrapper {
  57. width: 220px;
  58. }
  59. #wrapper.toggled #page-content-wrapper {
  60. margin-right: -220px;
  61. }
  62. #sidebar-wrapper {
  63. -moz-transition: all 0.5s ease;
  64. -o-transition: all 0.5s ease;
  65. -webkit-transition: all 0.5s ease;
  66. background: #fff;
  67. height: 100%;
  68. left: 220px;
  69. margin-left: -220px;
  70. overflow-x: hidden;
  71. overflow-y: auto;
  72. transition: all 0.5s ease;
  73. width: 0;
  74. z-index: 1000;
  75. border-right: 1px solid #DDDDDD;
  76. }
  77. #sidebar-wrapper::-webkit-scrollbar {
  78. display: none;
  79. }
  80. #page-content-wrapper {
  81. width: 100%;
  82. }
  83. /*-------------------------------*/
  84. /* Sidebar nav styles */
  85. /*-------------------------------*/
  86. .sidebar-nav {
  87. list-style: none;
  88. margin: 0;
  89. padding: 0;
  90. padding-top: 15px;
  91. position: absolute;
  92. width: 220px;
  93. }
  94. .sidebar-nav li {
  95. display: inline-block;
  96. line-height: 20px;
  97. position: relative;
  98. width: 100%;
  99. }
  100. .sidebar-nav li:before {
  101. content: '';
  102. height: 100%;
  103. left: 0;
  104. position: absolute;
  105. top: 0;
  106. -webkit-transition: width 0.2s ease-in;
  107. transition: width 0.2s ease-in;
  108. width: 3px;
  109. z-index: -1;
  110. }
  111. .sidebar-nav li:hover:before {
  112. -webkit-transition: width 0.2s ease-in;
  113. transition: width 0.2s ease-in;
  114. width: 100%;
  115. }
  116. .sidebar-nav li a {
  117. display: block;
  118. padding: 10px 15px 10px 30px;
  119. text-decoration: none;
  120. }
  121. .sidebar-nav li.open:hover before {
  122. -webkit-transition: width 0.2s ease-in;
  123. transition: width 0.2s ease-in;
  124. width: 100%;
  125. }
  126. .sidebar-nav .dropdown-menu {
  127. background-color: #222222;
  128. border-radius: 0;
  129. border: none;
  130. box-shadow: none;
  131. margin: 0;
  132. padding: 0;
  133. position: relative;
  134. width: 100%;
  135. }
  136. .sidebar-nav li a:hover,
  137. .sidebar-nav li a:active,
  138. .sidebar-nav li a:focus,
  139. .sidebar-nav li.open a:hover,
  140. .sidebar-nav li.open a:active,
  141. .sidebar-nav li.open a:focus {
  142. background-color: #583e7e;
  143. color: #ffffff;
  144. text-decoration: none;
  145. }
  146. .sidebar-nav > .sidebar-brand {
  147. font-size: 20px;
  148. height: 65px;
  149. line-height: 44px;
  150. }
  151. /*-------------------------------*/
  152. /* Hamburger-Cross */
  153. /*-------------------------------*/
  154. .hamburger {
  155. background: transparent;
  156. border: none;
  157. display: block;
  158. height: 32px;
  159. margin-left: 15px;
  160. position: fixed;
  161. top: 20px;
  162. width: 32px;
  163. z-index: 999;
  164. }
  165. .hamburger:hover {
  166. outline: none;
  167. }
  168. .hamburger:focus {
  169. outline: none;
  170. }
  171. .hamburger:active {
  172. outline: none;
  173. }
  174. .hamburger.is-closed:before {
  175. -webkit-transform: translate3d(0, 0, 0);
  176. -webkit-transition: all 0.35s ease-in-out;
  177. color: #ffffff;
  178. content: '';
  179. display: block;
  180. font-size: 14px;
  181. line-height: 32px;
  182. opacity: 0;
  183. text-align: center;
  184. width: 100px;
  185. }
  186. .hamburger.is-closed:hover before {
  187. -webkit-transform: translate3d(-100px, 0, 0);
  188. -webkit-transition: all 0.35s ease-in-out;
  189. display: block;
  190. opacity: 1;
  191. }
  192. .hamburger.is-closed:hover .hamb-top {
  193. -webkit-transition: all 0.35s ease-in-out;
  194. top: 0;
  195. }
  196. .hamburger.is-closed:hover .hamb-bottom {
  197. -webkit-transition: all 0.35s ease-in-out;
  198. bottom: 0;
  199. }
  200. .hamburger.is-closed .hamb-top {
  201. -webkit-transition: all 0.35s ease-in-out;
  202. background-color: rgba(0, 0, 0, 0.7);
  203. top: 5px;
  204. }
  205. .hamburger.is-closed .hamb-middle {
  206. background-color: rgba(0, 0, 0, 0.7);
  207. margin-top: -2px;
  208. top: 50%;
  209. }
  210. .hamburger.is-closed .hamb-bottom {
  211. -webkit-transition: all 0.35s ease-in-out;
  212. background-color: rgba(0, 0, 0, 0.7);
  213. bottom: 5px;
  214. }
  215. .hamburger.is-closed .hamb-top,
  216. .hamburger.is-closed .hamb-middle,
  217. .hamburger.is-closed .hamb-bottom,
  218. .hamburger.is-open .hamb-top,
  219. .hamburger.is-open .hamb-middle,
  220. .hamburger.is-open .hamb-bottom {
  221. height: 4px;
  222. left: 0;
  223. position: absolute;
  224. width: 100%;
  225. }
  226. .hamburger.is-open .hamb-top {
  227. -webkit-transform: rotate(45deg);
  228. -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
  229. background-color: #000;
  230. margin-top: -2px;
  231. top: 50%;
  232. }
  233. .hamburger.is-open .hamb-middle {
  234. background-color: #000;
  235. display: none;
  236. }
  237. .hamburger.is-open .hamb-bottom {
  238. -webkit-transform: rotate(-45deg);
  239. -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
  240. background-color: #000;
  241. margin-top: -2px;
  242. top: 50%;
  243. }
  244. .hamburger.is-open:before {
  245. -webkit-transform: translate3d(0, 0, 0);
  246. -webkit-transition: all 0.35s ease-in-out;
  247. color: #ffffff;
  248. content: '';
  249. display: block;
  250. font-size: 14px;
  251. line-height: 32px;
  252. opacity: 0;
  253. text-align: center;
  254. width: 100px;
  255. }
  256. .hamburger.is-open:hover before {
  257. -webkit-transform: translate3d(-100px, 0, 0);
  258. -webkit-transition: all 0.35s ease-in-out;
  259. display: block;
  260. opacity: 1;
  261. }
  262. /*-------------------------------*/
  263. /* Dark Overlay */
  264. /*-------------------------------*/
  265. .overlay {
  266. position: fixed;
  267. display: none;
  268. width: 100%;
  269. height: 100%;
  270. top: 0;
  271. left: 0;
  272. right: 0;
  273. bottom: 0;
  274. background-color: rgba(0, 0, 0, 0.4);
  275. z-index: 1;
  276. }
  277. .overlay .export-wrap{
  278. border-bottom: 1px solid #ddd;
  279. }
  280. .overlay .export-wrap .dropdown {
  281. margin: 20px 30px 20px 30px;
  282. }
  283. .scroll-top{
  284. right: 60px;
  285. position: fixed;
  286. width: 50px;
  287. height: 50px;
  288. bottom: 91px;
  289. padding: 2px 10px;
  290. background: #583e7e;
  291. color: #fff;
  292. }
  293. .scroll-top a{
  294. font-size: 30px;
  295. color: #fff;
  296. }