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

website.css 2.9 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. @media (min-width: 992px) {
  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. margin-top: 10px;
  43. padding-bottom: 20px;
  44. }
  45. .avatar {
  46. display: inline-block;
  47. vertical-align: middle;
  48. overflow: hidden;
  49. background-color: #ddd;
  50. border: 1px solid #eee;
  51. }
  52. .avatar-small {
  53. margin-right: 5px;
  54. width: 30px;
  55. height: 30px;
  56. border-radius: 30px;
  57. -moz-border-radius: 30px;
  58. -webkit-border-radius: 30px;
  59. }
  60. .avatar-small img {
  61. width: 30px;
  62. }
  63. .avatar-medium {
  64. margin-right: 5px;
  65. width: 48px;
  66. height: 48px;
  67. border-radius: 48px;
  68. -moz-border-radius: 48px;
  69. -webkit-border-radius: 48px;
  70. }
  71. .avatar-medium img {
  72. width: 48px;
  73. }
  74. .avatar-large {
  75. margin-right: 10px;
  76. width: 72px;
  77. height: 72px;
  78. border-radius: 72px;
  79. -moz-border-radius: 72px;
  80. -webkit-border-radius: 72px;
  81. }
  82. .avatar-large img {
  83. width: 72px;
  84. }
  85. .avatar-x-large {
  86. margin-right: 10px;
  87. width: 100px;
  88. height: 100px;
  89. border-radius: 100px;
  90. -moz-border-radius: 100px;
  91. -webkit-border-radius: 100px;
  92. }
  93. .avatar-x-large img {
  94. width: 100px;
  95. }
  96. .carousel-control .icon {
  97. position: absolute;
  98. top: 50%;
  99. left: 50%;
  100. z-index: 5;
  101. display: inline-block;
  102. width: 20px;
  103. height: 20px;
  104. margin-top: -10px;
  105. margin-left: -10px;
  106. }
  107. .hidden-xs-inline, .hidden-xs-inline-block {
  108. display: none;
  109. }
  110. @media (min-width: 768px) {
  111. .hidden-xs-inline {
  112. display: inline;
  113. }
  114. .hidden-xs-inline-block {
  115. display: inline-block;
  116. }
  117. }
  118. .visible-xs-inline {
  119. display: inline;
  120. }
  121. .visible-xs-inline-block {
  122. display: inline-block;
  123. }
  124. @media (min-width: 768px) {
  125. .visible-xs-inline, .visible-xs-inline-block {
  126. display: none;
  127. }
  128. }
  129. /* the element that this class is applied to, should have a max width for this to work*/
  130. .ellipsis {
  131. white-space: nowrap;
  132. overflow: hidden;
  133. text-overflow: ellipsis;
  134. display: inline-block;
  135. }
  136. .navbar {
  137. box-shadow: none;
  138. border-radius: 0px;
  139. margin-bottom: 7px;
  140. }
  141. .navbar-brand {
  142. padding-right: 30px;
  143. max-width: 80%;
  144. }
  145. @media (min-width: 768px) {
  146. .navbar-brand {
  147. max-width: 300px;
  148. }
  149. }
  150. .panel-container {
  151. margin-top: 35px;
  152. }
  153. .panel-heading,
  154. .panel-body {
  155. padding-left: 15px;
  156. }
  157. fieldset {
  158. margin-bottom: 20px;
  159. }
  160. .message-overlay {
  161. position: fixed;
  162. top: 0;
  163. left: 0;
  164. width: 100%;
  165. height: 100%;
  166. z-index: 1040;
  167. background-color: #fff;
  168. display: table;
  169. }
  170. .message-overlay .content {
  171. display: table-cell;
  172. vertical-align: middle;
  173. text-align: center;
  174. }
  175. .web-page-editable {
  176. margin: -15px;
  177. padding: 15px;
  178. border-radius: 4px;
  179. }
  180. .slide-image {
  181. width: 100%;
  182. }