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