您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

421 行
5.6 KiB

  1. @media (min-width: 768px) {
  2. .login-wrapper {
  3. border-right: 1px solid #f2f2f2;
  4. }
  5. }
  6. h1, h2, h3, h4, h5 {
  7. font-weight: bold;
  8. }
  9. a {
  10. cursor: pointer;
  11. }
  12. img {
  13. max-width: 100%;
  14. }
  15. .content {
  16. margin-bottom: 22px;
  17. }
  18. .banner {
  19. margin-top: 20px;
  20. padding: 0px 20px;
  21. }
  22. .missing-image {
  23. background-color: #eee;
  24. padding: 40px;
  25. width: 112px;
  26. font-size: 32px;
  27. color: #888;
  28. }
  29. .social-icons i {
  30. font-size: 120%;
  31. }
  32. .social-icons a:hover {
  33. text-decoration: none;
  34. }
  35. .social-icons a i:hover {
  36. text-decoration: none;
  37. }
  38. .social-icons i {
  39. margin-left: 5px;
  40. }
  41. .web-footer {
  42. padding: 20px 0px;
  43. }
  44. .avatar {
  45. display: inline-block;
  46. vertical-align: middle;
  47. overflow: hidden;
  48. background-color: #ddd;
  49. border: 1px solid #eee;
  50. }
  51. .avatar-small {
  52. margin-right: 5px;
  53. width: 30px;
  54. height: 30px;
  55. border-radius: 30px;
  56. -moz-border-radius: 30px;
  57. -webkit-border-radius: 30px;
  58. }
  59. .avatar-small img {
  60. width: 30px;
  61. }
  62. .avatar-medium {
  63. margin-right: 5px;
  64. width: 48px;
  65. height: 48px;
  66. border-radius: 48px;
  67. -moz-border-radius: 48px;
  68. -webkit-border-radius: 48px;
  69. }
  70. .avatar-medium img {
  71. width: 48px;
  72. }
  73. .avatar-large {
  74. margin-right: 10px;
  75. width: 72px;
  76. height: 72px;
  77. border-radius: 72px;
  78. -moz-border-radius: 72px;
  79. -webkit-border-radius: 72px;
  80. }
  81. .avatar-large img {
  82. width: 72px;
  83. }
  84. .avatar-x-large {
  85. margin-right: 10px;
  86. width: 100px;
  87. height: 100px;
  88. border-radius: 100px;
  89. -moz-border-radius: 100px;
  90. -webkit-border-radius: 100px;
  91. }
  92. .avatar-x-large img {
  93. width: 100px;
  94. }
  95. .carousel-control .icon {
  96. position: absolute;
  97. top: 50%;
  98. left: 50%;
  99. z-index: 5;
  100. display: inline-block;
  101. width: 20px;
  102. height: 20px;
  103. margin-top: -10px;
  104. margin-left: -10px;
  105. }
  106. .hidden-xs-inline, .hidden-xs-inline-block {
  107. display: none;
  108. }
  109. @media (min-width: 768px) {
  110. .hidden-xs-inline {
  111. display: inline;
  112. }
  113. .hidden-xs-inline-block {
  114. display: inline-block;
  115. }
  116. }
  117. .visible-xs-inline {
  118. display: inline;
  119. }
  120. .visible-xs-inline-block {
  121. display: inline-block;
  122. }
  123. @media (min-width: 768px) {
  124. .visible-xs-inline, .visible-xs-inline-block {
  125. display: none;
  126. }
  127. }
  128. /* the element that this class is applied to, should have a max width for this to work*/
  129. .ellipsis {
  130. white-space: nowrap;
  131. overflow: hidden;
  132. text-overflow: ellipsis;
  133. display: inline-block;
  134. }
  135. .navbar {
  136. box-shadow: none;
  137. border-radius: 0px;
  138. margin-bottom: 0px;
  139. }
  140. .navbar-brand {
  141. padding-right: 30px;
  142. max-width: 80%;
  143. min-height: 20px;
  144. height: auto;
  145. }
  146. @media (min-width: 768px) {
  147. .navbar-brand {
  148. max-width: 300px;
  149. }
  150. }
  151. .panel-container {
  152. margin-top: 35px;
  153. }
  154. .panel-heading,
  155. .panel-body {
  156. padding-left: 15px;
  157. }
  158. fieldset {
  159. margin-bottom: 20px;
  160. }
  161. .message-overlay {
  162. position: fixed;
  163. top: 0;
  164. left: 0;
  165. width: 100%;
  166. height: 100%;
  167. z-index: 1040;
  168. background-color: #fff;
  169. display: table;
  170. }
  171. .message-overlay .content {
  172. display: table-cell;
  173. vertical-align: middle;
  174. text-align: center;
  175. }
  176. .web-page-editable {
  177. margin: -15px;
  178. padding: 15px;
  179. border-radius: 4px;
  180. }
  181. .slide-image {
  182. width: 100%;
  183. }
  184. .page-header {
  185. margin: 0px;
  186. padding: 5px 0px;
  187. }
  188. .page-container {
  189. margin-top: 15px;
  190. }
  191. .page-header h1,
  192. .page-header h2,
  193. .page-header h3 {
  194. margin: 5px auto;
  195. }
  196. .page-header .lead {
  197. margin-bottom: 5px;
  198. }
  199. .sidebar-item {
  200. margin: 15px auto;
  201. color: #999;
  202. font-size: 90%;
  203. }
  204. .sidebar-item a:hover {
  205. color: #333;
  206. border-bottom: 2px solid #999;
  207. }
  208. html,
  209. body {
  210. height: 100%;
  211. /* The html and body elements cannot have any padding or margin. */
  212. }
  213. /* Wrapper for page content to push down footer */
  214. #wrap {
  215. min-height: 100%;
  216. height: auto;
  217. /* Negative indent footer by its height */
  218. margin: auto;
  219. margin: 0 auto -140px;
  220. /* Pad bottom by footer height */
  221. padding: 0 0 140px;
  222. }
  223. /* Set the fixed height of the footer here */
  224. #wrap-footer {
  225. height: 140px;
  226. background-color: #f5f5f5;
  227. }
  228. .page-footer {
  229. margin: 20px 0px 0px;
  230. border-top: 1px solid #eee;
  231. }
  232. /* website group */
  233. .view-selector {
  234. margin-bottom: 15px;
  235. }
  236. /* post and post list */
  237. .post {
  238. padding: 15px 0px;
  239. word-wrap: break-word;
  240. border-bottom: 1px solid #eee;
  241. }
  242. .post:first-child {
  243. margin-top: 15px !important;
  244. }
  245. .post .img-responsive {
  246. border-radius: 4px;
  247. }
  248. .post .media-link {
  249. display: block;
  250. min-width: 50px;
  251. min-height: 50px;
  252. }
  253. .post .media-object {
  254. border-radius: 4px;
  255. max-width: 50px;
  256. }
  257. .post .media-heading {
  258. margin-bottom: 12px;
  259. }
  260. .parent-post .post {
  261. border: none;
  262. }
  263. .child-post {
  264. border: 1px solid #eee;
  265. padding-left: 15px;
  266. background-color: #f8f8f8;
  267. margin-top: 0px;
  268. }
  269. textarea {
  270. resize: vertical;
  271. }
  272. .post-add-textarea {
  273. height: 200px !important;
  274. }
  275. /* needs review */
  276. .btn-small, .post-editor .btn {
  277. padding: 5px;
  278. font-size: 90%;
  279. }
  280. .btn-right, .post-editor .btn {
  281. margin-left: 5px;
  282. }
  283. .no-posts {
  284. margin-top: 15px;
  285. }
  286. .full-page {
  287. margin: 30px;
  288. }
  289. .img-responsive {
  290. border-radius: 4px;
  291. }
  292. .user-profile {
  293. min-height: 50px;
  294. min-width: 70px;
  295. }
  296. .visible-xs {
  297. display: none !important;
  298. }
  299. @media (max-width: 767px) {
  300. .visible-xs {
  301. display: inline-block !important;
  302. }
  303. }
  304. .nav-tabs > li > a {
  305. padding: 7px 10px;
  306. }
  307. .btn-more {
  308. margin-top: 15px;
  309. }
  310. .post-content img {
  311. margin: 10px 0px;
  312. }
  313. .assigned-label, .event-label {
  314. display: inline-block;
  315. padding: .4em .6em .4em;
  316. margin-bottom: 7px;
  317. }
  318. a.no-decoration {
  319. text-decoration: none;
  320. color: inherit;
  321. }
  322. .page-breadcrumbs {
  323. border-bottom: 1px solid #eee;
  324. }
  325. .page-breadcrumbs .breadcrumb {
  326. margin-bottom: 0px;
  327. background-color: transparent;
  328. border-radius: 0px;
  329. padding: 8px 0px;
  330. }
  331. @media (min-width: 768px) {
  332. .page-sidebar {
  333. padding-left: 5em;
  334. }
  335. }
  336. @media (max-width: 767px) {
  337. .page-sidebar {
  338. padding-bottom: 15px;
  339. margin-bottom: 15px;
  340. border-bottom: 1px solid #eee;
  341. }
  342. }
  343. .post:last-child {
  344. border-bottom: none;
  345. }
  346. /* end - needs review */