main.css 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  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. .toolsbar {
  75. border-bottom: 1px solid #ccc
  76. }
  77. .tools-btn {
  78. height: 30px;
  79. line-height: 30px;
  80. }
  81. .toolsbar .tools-btn.btn:hover {
  82. background: #f7f7f9;
  83. }
  84. .main-side {
  85. border-left: 1px solid #ccc;
  86. overflow-y: hidden;
  87. }
  88. .sidebar-bottom,.sidebar-bottom .col-lg-6,.sidebar-bottom .col-lg-12 {
  89. height:200px
  90. }
  91. .top-content, .fluid-content {
  92. overflow: auto;
  93. border-bottom: 1px solid #ccc;
  94. }
  95. .bottom-content .nav {
  96. background: #f7f7f9;
  97. padding:0 0 0 2px
  98. }
  99. .bottom-content .nav-tabs .nav-link, .side-tabs .nav-tabs .nav-link {
  100. border-radius: 0;
  101. padding: 0.2em 0.5em
  102. }
  103. .side-tabs .nav-tabs .nav-item {
  104. z-index: 999
  105. }
  106. .side-tabs .nav-tabs {
  107. border-bottom: none;
  108. margin-bottom: -1px
  109. }
  110. .side-tabs .nav-tabs .nav-link {
  111. border-radius: 0;
  112. padding: 0em 0.5em;
  113. line-height: 30px;
  114. z-index: 999
  115. }
  116. .bottom-content .nav-tabs .nav-link.active {
  117. border-top: 1px solid #f7f7f9
  118. }
  119. .side-tabs .nav-tabs .nav-link.active {
  120. border-top: none;
  121. border-bottom:1px solid #fff
  122. }
  123. .side-tabs a.active, .sub-nav a.active {
  124. background: #ccc
  125. }
  126. .poj-manage {
  127. background: #fff
  128. }
  129. .slide-sidebar {
  130. border-left: 1px solid #E1E1E1;
  131. box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.1);
  132. background: none repeat scroll 0% 0% #ffffff;
  133. overflow: hidden;
  134. position: absolute;
  135. right: 0px;
  136. top: 0;
  137. z-index: 999;
  138. width: 0px;
  139. }
  140. .new-msg {
  141. -webkit-animation: tada 1s infinite .2s ease both;
  142. -moz-animation: tada 1s infinite .2s ease both;
  143. }
  144. @-webkit-keyframes tada {
  145. 0% {
  146. -webkit-transform: scale(1)
  147. }
  148. 10%, 20% {
  149. -webkit-transform: scale(0.9) rotate(-3deg)
  150. }
  151. 30%, 50%, 70%, 90% {
  152. -webkit-transform: scale(1.1) rotate(3deg)
  153. }
  154. 40%, 60%, 80% {
  155. -webkit-transform: scale(1.1) rotate(-3deg)
  156. }
  157. 100% {
  158. -webkit-transform: scale(1) rotate(0)
  159. }
  160. }
  161. @-moz-keyframes tada {
  162. 0% {
  163. -moz-transform: scale(1)
  164. }
  165. 10%, 20% {
  166. -moz-transform: scale(0.9) rotate(-3deg)
  167. }
  168. 30%, 50%, 70%, 90% {
  169. -moz-transform: scale(1.1) rotate(3deg)
  170. }
  171. 40%, 60%, 80% {
  172. -moz-transform: scale(1.1) rotate(-3deg)
  173. }
  174. 100% {
  175. -moz-transform: scale(1) rotate(0)
  176. }
  177. }
  178. .has-danger {
  179. -webkit-animation: shake 1s .2s ease both;
  180. -moz-animation: shake 1s .2s ease both;
  181. animation: shake 1s .2s ease both;
  182. }
  183. @-webkit-keyframes shake {
  184. 0%, 100% {
  185. -webkit-transform: translateX(0);
  186. }
  187. 10%, 30%, 50%, 70%, 90% {
  188. -webkit-transform: translateX(-10px);
  189. }
  190. 20%, 40%, 60%, 80% {
  191. -webkit-transform: translateX(10px);
  192. }
  193. }
  194. @-moz-keyframes shake {
  195. 0%, 100% {
  196. -moz-transform: translateX(0);
  197. }
  198. 10%, 30%, 50%, 70%, 90% {
  199. -moz-transform: translateX(-10px);
  200. }
  201. 20%, 40%, 60%, 80% {
  202. -moz-transform: translateX(10px);
  203. }
  204. }
  205. @keyframes shake {
  206. 0%, 100% {
  207. transform: translateX(0);
  208. }
  209. 10%, 30%, 50%, 70%, 90% {
  210. transform: translateX(-10px);
  211. }
  212. 20%, 40%, 60%, 80% {
  213. transform: translateX(10px);
  214. }
  215. }
  216. .bottom-content .tab-content .main-data-bottom{
  217. height: 200px;
  218. overflow: auto;
  219. }
  220. .bottom-content .tab-content .ovf-hidden{
  221. overflow: hidden;
  222. }
  223. .form-signin {
  224. max-width: 500px;
  225. margin: 150px auto;
  226. }
  227. .poj-list, .side-content {
  228. overflow: auto;
  229. }
  230. .poj-list span.poj-icon {
  231. padding-right:7px;
  232. color:#ccc
  233. }
  234. .poj-list a.tree-open,.poj-list a.tree-close{
  235. width:15px;
  236. display: inline-block;
  237. }
  238. .print-toolsbar{
  239. padding:5px
  240. }
  241. .print-toolsbar .panel {
  242. display:inline-block;
  243. vertical-align:top;
  244. background:#f7f7f9
  245. }
  246. .print-toolsbar .panel .panel-foot{
  247. text-align: center;
  248. font-size: 12px
  249. }
  250. .print-list {
  251. border-right:1px solid #ccc
  252. }
  253. .print-list .form-list {
  254. overflow: auto
  255. }
  256. .print-list .list-tools{
  257. height:50px;
  258. padding:10px 0;
  259. border-bottom:1px solid #f2f2f2
  260. }
  261. .pageContainer {
  262. background: #ededed;
  263. text-align: center
  264. }
  265. .pageContainer .page{
  266. border:9px solid transparent;
  267. display: inline-block;
  268. }
  269. .pageContainer .page img{
  270. width:inherit;
  271. height: inherit;
  272. }
  273. .modal-fixed-height {
  274. height: 400px;
  275. overflow-y: auto;
  276. }
  277. .sidebar-tools-bar {
  278. background:#fff
  279. }
  280. .side-search-box{
  281. background:#fff;
  282. border-bottom:1px solid #ddd
  283. }