main.css 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. /*building SAAS 0.1*/
  2. /*bootstrap 初始化*/
  3. body {
  4. font-size: 0.9rem;
  5. overflow: hidden;
  6. }
  7. .dropdown-menu {
  8. font-size: 0.9rem
  9. }
  10. /*自定义css*/
  11. .header {
  12. background: #e1e1e1
  13. }
  14. .header .header-logo {
  15. background: #ff6501;
  16. color: #fff;
  17. float: left;
  18. padding-top: .25rem;
  19. padding-bottom: .25rem;
  20. margin-right: 1rem;
  21. font-size: 1.25rem;
  22. line-height: inherit
  23. }
  24. .top-msg{
  25. position: fixed;
  26. top:0;
  27. width:100%;
  28. z-index: 999
  29. }
  30. .in-1{padding-left:0px!important}
  31. .in-2{padding-left:21px!important}
  32. .in-3{padding-left:42px!important}
  33. .in-4{padding-left:63px!important}
  34. .in-5{padding-left:84px!important}
  35. .in-6{padding-left:105px!important}
  36. .main {
  37. position: relative;
  38. background: #f7f7f9;
  39. }
  40. .main-nav {
  41. position: absolute;
  42. text-align: center;
  43. z-index: 999;
  44. padding: 2px 0 0 2px
  45. }
  46. .main-nav .nav a {
  47. display: block;
  48. width: 28px;
  49. text-align: center;
  50. line-height: 18px;
  51. color: #999;
  52. padding: 10px 0;
  53. border-right: 1px solid #ccc;
  54. }
  55. .main-nav .nav a:hover {
  56. background: #fff;
  57. color: #333;
  58. text-decoration: none;
  59. }
  60. .main-nav .nav a.active {
  61. border: 1px solid #ccc;
  62. border-right: 1px solid #fff;
  63. background: #fff;
  64. color: #333
  65. }
  66. .main-nav .nav-tabs{
  67. border-bottom: none
  68. }
  69. .content {
  70. border-left: 1px solid #ccc;
  71. margin-left: 29px;
  72. background: #fff
  73. }
  74. .tools-btn {
  75. height: 30px;
  76. line-height: 30px;
  77. }
  78. .toolsbar .tools-btn.btn:hover {
  79. background: #f7f7f9;
  80. }
  81. .main-side {
  82. border-top: 1px solid #ccc;
  83. border-left: 1px solid #ccc;
  84. overflow-y: hidden;
  85. }
  86. .sidebar-bottom,.sidebar-bottom .col-lg-6,.sidebar-bottom .col-lg-12 {
  87. height:200px
  88. }
  89. .top-content, .fluid-content {
  90. overflow: auto;
  91. border-bottom: 1px solid #ccc;
  92. }
  93. .bottom-content .nav {
  94. background: #f7f7f9;
  95. padding:0 0 0 2px
  96. }
  97. .bottom-content .nav-tabs .nav-link, .side-tabs .nav-tabs .nav-link {
  98. border-radius: 0;
  99. padding: 0.2em 0.5em
  100. }
  101. .side-tabs .nav-tabs .nav-item {
  102. z-index: 999
  103. }
  104. .side-tabs .nav-tabs {
  105. border-bottom: none;
  106. margin-bottom: -1px
  107. }
  108. .side-tabs .nav-tabs .nav-link {
  109. border-radius: 0;
  110. padding: 0em 0.5em;
  111. line-height: 30px;
  112. z-index: 999
  113. }
  114. .bottom-content .nav-tabs .nav-link.active {
  115. border-top: 1px solid #f7f7f9
  116. }
  117. .side-tabs .nav-tabs .nav-link.active {
  118. border-top: none;
  119. border-bottom:1px solid #fff
  120. }
  121. .side-tabs a.active, .sub-nav a.active {
  122. background: #ccc
  123. }
  124. .poj-manage {
  125. background: #fff
  126. }
  127. .slide-sidebar {
  128. border-left: 1px solid #E1E1E1;
  129. box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.1);
  130. background: none repeat scroll 0% 0% #ffffff;
  131. overflow: hidden;
  132. position: absolute;
  133. right: 0px;
  134. top: 0;
  135. z-index: 999;
  136. width: 0px;
  137. }
  138. .new-msg {
  139. -webkit-animation: tada 1s infinite .2s ease both;
  140. -moz-animation: tada 1s infinite .2s ease both;
  141. }
  142. @-webkit-keyframes tada {
  143. 0% {
  144. -webkit-transform: scale(1)
  145. }
  146. 10%, 20% {
  147. -webkit-transform: scale(0.9) rotate(-3deg)
  148. }
  149. 30%, 50%, 70%, 90% {
  150. -webkit-transform: scale(1.1) rotate(3deg)
  151. }
  152. 40%, 60%, 80% {
  153. -webkit-transform: scale(1.1) rotate(-3deg)
  154. }
  155. 100% {
  156. -webkit-transform: scale(1) rotate(0)
  157. }
  158. }
  159. @-moz-keyframes tada {
  160. 0% {
  161. -moz-transform: scale(1)
  162. }
  163. 10%, 20% {
  164. -moz-transform: scale(0.9) rotate(-3deg)
  165. }
  166. 30%, 50%, 70%, 90% {
  167. -moz-transform: scale(1.1) rotate(3deg)
  168. }
  169. 40%, 60%, 80% {
  170. -moz-transform: scale(1.1) rotate(-3deg)
  171. }
  172. 100% {
  173. -moz-transform: scale(1) rotate(0)
  174. }
  175. }
  176. .has-danger {
  177. -webkit-animation: shake 1s .2s ease both;
  178. -moz-animation: shake 1s .2s ease both;
  179. animation: shake 1s .2s ease both;
  180. }
  181. @-webkit-keyframes shake {
  182. 0%, 100% {
  183. -webkit-transform: translateX(0);
  184. }
  185. 10%, 30%, 50%, 70%, 90% {
  186. -webkit-transform: translateX(-10px);
  187. }
  188. 20%, 40%, 60%, 80% {
  189. -webkit-transform: translateX(10px);
  190. }
  191. }
  192. @-moz-keyframes shake {
  193. 0%, 100% {
  194. -moz-transform: translateX(0);
  195. }
  196. 10%, 30%, 50%, 70%, 90% {
  197. -moz-transform: translateX(-10px);
  198. }
  199. 20%, 40%, 60%, 80% {
  200. -moz-transform: translateX(10px);
  201. }
  202. }
  203. @keyframes shake {
  204. 0%, 100% {
  205. transform: translateX(0);
  206. }
  207. 10%, 30%, 50%, 70%, 90% {
  208. transform: translateX(-10px);
  209. }
  210. 20%, 40%, 60%, 80% {
  211. transform: translateX(10px);
  212. }
  213. }
  214. .bottom-content .tab-content .main-data-bottom{
  215. height: 200px;
  216. overflow: auto;
  217. }
  218. .bottom-content .tab-content .ovf-hidden{
  219. overflow: hidden;
  220. }
  221. .form-signin {
  222. max-width: 500px;
  223. margin: 150px auto;
  224. }
  225. .poj-list, .side-content {
  226. overflow: auto;
  227. }
  228. .poj-list span.poj-icon {
  229. padding-right:7px;
  230. color:#ccc
  231. }
  232. .poj-list a.tree-open,.poj-list a.tree-close{
  233. width:15px;
  234. display: inline-block;
  235. }
  236. .print-toolsbar{
  237. padding:5px
  238. }
  239. .print-toolsbar .panel {
  240. display:inline-block;
  241. vertical-align:top;
  242. background:#f7f7f9
  243. }
  244. .print-toolsbar .panel .panel-foot{
  245. text-align: center;
  246. font-size: 12px
  247. }
  248. .print-list {
  249. border-right:1px solid #ccc
  250. }
  251. .print-list .form-list {
  252. overflow: auto
  253. }
  254. .print-list .list-tools{
  255. height:50px;
  256. padding:10px 0;
  257. border-bottom:1px solid #f2f2f2
  258. }
  259. .pageContainer {
  260. background: #ededed;
  261. text-align: center
  262. }
  263. .pageContainer .page{
  264. border:9px solid transparent;
  265. display: inline-block;
  266. }
  267. .pageContainer .page img{
  268. width:inherit;
  269. height: inherit;
  270. }
  271. .modal-fixed-height {
  272. height: 400px;
  273. overflow-y: auto;
  274. }