main.css 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. /*building SAAS 0.1*/
  2. /*bootstrap 初始化*/
  3. body {
  4. font-size: 0.9rem
  5. }
  6. .dropdown-menu {
  7. font-size: 0.9rem
  8. }
  9. /*自定义css*/
  10. .header {
  11. background: #e1e1e1
  12. }
  13. .header .header-logo {
  14. background: #ff6501;
  15. color: #fff;
  16. float: left;
  17. padding-top: .25rem;
  18. padding-bottom: .25rem;
  19. margin-right: 1rem;
  20. font-size: 1.25rem;
  21. line-height: inherit
  22. }
  23. .top-msg{
  24. position: fixed;
  25. top:0;
  26. width:100%;
  27. z-index: 999
  28. }
  29. .in-1{padding-left:0rem!important}
  30. .in-2{padding-left:1rem!important}
  31. .in-3{padding-left:1.5rem!important}
  32. .in-4{padding-left:2rem!important}
  33. .in-5{padding-left:2.5rem!important}
  34. .in-6{padding-left:3rem!important}
  35. .main {
  36. position: relative;
  37. background: #f7f7f9;
  38. }
  39. .main-nav {
  40. position: absolute;
  41. text-align: center;
  42. z-index: 999;
  43. padding: 2px 0 0 2px
  44. }
  45. .main-nav .nav a {
  46. display: block;
  47. width: 28px;
  48. text-align: center;
  49. line-height: 18px;
  50. color: #999;
  51. padding: 10px 0;
  52. border-right: 1px solid #ccc;
  53. }
  54. .main-nav .nav a:hover {
  55. background: #fff;
  56. color: #333;
  57. text-decoration: none;
  58. }
  59. .main-nav .nav a.active {
  60. border: 1px solid #ccc;
  61. border-right: 1px solid #fff;
  62. background: #fff;
  63. color: #333
  64. }
  65. .content {
  66. background: #fff
  67. }
  68. .tools-btn {
  69. height: 30px;
  70. line-height: 30px;
  71. }
  72. .toolsbar .tools-btn.btn:hover {
  73. background: #f7f7f9;
  74. }
  75. .main-side {
  76. border-right: 1px solid #ccc;
  77. border-left: 1px solid #ccc;
  78. overflow:hidden;
  79. }
  80. .main-side .tab-bar {
  81. padding:5px 10px;
  82. height:38px;
  83. position:fixed;
  84. }
  85. .main-side .tab-content {
  86. margin-top: 38px
  87. }
  88. .top-content, .fluid-content {
  89. overflow: hidden;
  90. border-bottom: 1px solid #ccc;
  91. }
  92. .warp-p2 {
  93. padding: 2px
  94. }
  95. .bottom-content .nav,.top-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,.top-content .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 {
  217. height: 370px;
  218. overflow: hidden;
  219. }
  220. .bottom-content .tab-content .main-data-bottom{
  221. height: 340px;
  222. overflow: auto;
  223. }
  224. .form-signin {
  225. max-width: 500px;
  226. margin: 150px auto;
  227. }
  228. .poj-list, .side-content {
  229. overflow: auto;
  230. }
  231. .poj-list span.poj-icon {
  232. padding-right:10px;
  233. color:#ccc
  234. }
  235. .print-toolsbar{
  236. padding:5px
  237. }
  238. .print-toolsbar .panel {
  239. display:inline-block;
  240. vertical-align:top;
  241. background:#f7f7f9
  242. }
  243. .print-toolsbar .panel .panel-foot{
  244. text-align: center;
  245. font-size: 12px
  246. }
  247. .print-list {
  248. border-right:1px solid #ccc
  249. }
  250. .print-list .form-list {
  251. overflow: auto
  252. }
  253. .print-list .list-tools{
  254. height:50px;
  255. padding:10px 0;
  256. border-bottom:1px solid #f2f2f2
  257. }
  258. .pageContainer {
  259. background: #ededed;
  260. text-align: center
  261. }
  262. .pageContainer .page{
  263. border:9px solid transparent;
  264. display: inline-block;
  265. }
  266. .pageContainer .page img{
  267. width:inherit;
  268. height: inherit;
  269. }
  270. .codeList{
  271. max-height: 200px;
  272. overflow:auto;
  273. }
  274. .main-data-top,.main-data-bottom,.main-data,.main-side,.main-data-side-q{
  275. overflow: hidden;
  276. }
  277. .modal-fixed-height {
  278. height:400px;
  279. overflow-y:auto;
  280. }
  281. .modal-fixed-height2 {
  282. height:368px;
  283. overflow-y:auto;
  284. }
  285. .btn.disabled, .btn:disabled {
  286. cursor: not-allowed;
  287. opacity: .65;
  288. color:#666
  289. }
  290. .modal-lgx {
  291. max-width: 1022px
  292. }
  293. .second_header{
  294. background: #e1e1e1;
  295. }