You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

website.css 2.9 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. .container {
  2. max-width: 800px;
  3. }
  4. h1, h2, h3, h4, h5 {
  5. font-weight: bold;
  6. }
  7. a {
  8. cursor: pointer;
  9. }
  10. img {
  11. max-width: 100%;
  12. }
  13. .content {
  14. margin-bottom: 22px;
  15. }
  16. .banner {
  17. margin-top: 20px;
  18. padding: 0px 20px;
  19. }
  20. .missing-image {
  21. background-color: #eee;
  22. padding: 40px;
  23. width: 112px;
  24. font-size: 32px;
  25. color: #888;
  26. }
  27. .social-icons i {
  28. font-size: 120%;
  29. }
  30. .social-icons a:hover {
  31. text-decoration: none;
  32. }
  33. .social-icons a i:hover {
  34. text-decoration: none;
  35. }
  36. .social-icons i {
  37. margin-left: 5px;
  38. }
  39. .web-footer {
  40. margin-top: 10px;
  41. padding-bottom: 20px;
  42. }
  43. .avatar {
  44. display: inline-block;
  45. vertical-align: middle;
  46. overflow: hidden;
  47. background-color: #ddd;
  48. border: 1px solid #eee;
  49. }
  50. .avatar-small {
  51. margin-right: 5px;
  52. width: 30px;
  53. height: 30px;
  54. border-radius: 30px;
  55. -moz-border-radius: 30px;
  56. -webkit-border-radius: 30px;
  57. }
  58. .avatar-small img {
  59. width: 30px;
  60. }
  61. .avatar-medium {
  62. margin-right: 5px;
  63. width: 48px;
  64. height: 48px;
  65. border-radius: 48px;
  66. -moz-border-radius: 48px;
  67. -webkit-border-radius: 48px;
  68. }
  69. .avatar-medium img {
  70. width: 48px;
  71. }
  72. .avatar-large {
  73. margin-right: 10px;
  74. width: 72px;
  75. height: 72px;
  76. border-radius: 72px;
  77. -moz-border-radius: 72px;
  78. -webkit-border-radius: 72px;
  79. }
  80. .avatar-large img {
  81. width: 72px;
  82. }
  83. .avatar-x-large {
  84. margin-right: 10px;
  85. width: 100px;
  86. height: 100px;
  87. border-radius: 100px;
  88. -moz-border-radius: 100px;
  89. -webkit-border-radius: 100px;
  90. }
  91. .avatar-x-large img {
  92. width: 100px;
  93. }
  94. .carousel-control .icon {
  95. position: absolute;
  96. top: 50%;
  97. left: 50%;
  98. z-index: 5;
  99. display: inline-block;
  100. width: 20px;
  101. height: 20px;
  102. margin-top: -10px;
  103. margin-left: -10px;
  104. }
  105. .hidden-xs-inline, .hidden-xs-inline-block {
  106. display: none;
  107. }
  108. @media (min-width: 768px) {
  109. .hidden-xs-inline {
  110. display: inline;
  111. }
  112. .hidden-xs-inline-block {
  113. display: inline-block;
  114. }
  115. }
  116. .visible-xs-inline {
  117. display: inline;
  118. }
  119. .visible-xs-inline-block {
  120. display: inline-block;
  121. }
  122. @media (min-width: 768px) {
  123. .visible-xs-inline, .visible-xs-inline-block {
  124. display: none;
  125. }
  126. }
  127. /* the element that this class is applied to, should have a max width for this to work*/
  128. .ellipsis {
  129. white-space: nowrap;
  130. overflow: hidden;
  131. text-overflow: ellipsis;
  132. display: inline-block;
  133. }
  134. .navbar {
  135. box-shadow: none;
  136. border-radius: 0px;
  137. margin-bottom: 7px;
  138. }
  139. .navbar-brand {
  140. padding-right: 30px;
  141. max-width: 80%;
  142. }
  143. @media (min-width: 768px) {
  144. .navbar-brand {
  145. max-width: 300px;
  146. }
  147. }
  148. .panel-container {
  149. margin-top: 35px;
  150. }
  151. .panel-heading,
  152. .panel-body {
  153. padding-left: 15px;
  154. }
  155. fieldset {
  156. margin-bottom: 20px;
  157. }
  158. .message-overlay {
  159. position: fixed;
  160. top: 0;
  161. left: 0;
  162. width: 100%;
  163. height: 100%;
  164. z-index: 1040;
  165. background-color: #fff;
  166. display: table;
  167. }
  168. .message-overlay .content {
  169. display: table-cell;
  170. vertical-align: middle;
  171. text-align: center;
  172. }
  173. .web-page-editable {
  174. margin: -15px;
  175. padding: 15px;
  176. border-radius: 4px;
  177. }
  178. .slide-image {
  179. width: 100%;
  180. }