main.css 5.2 KB

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