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.

преди 11 години
преди 12 години
преди 11 години
преди 12 години
преди 11 години
преди 12 години
преди 11 години
преди 12 години
преди 11 години
преди 12 години
преди 12 години
преди 12 години
преди 12 години
преди 12 години
преди 12 години
преди 12 години
преди 11 години
преди 11 години
преди 11 години
преди 12 години
преди 11 години
преди 11 години
преди 12 години
преди 12 години
преди 11 години
преди 11 години
преди 12 години
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  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: 0 0 20px;
  186. padding: 5px 0px;
  187. }
  188. .page-header h1,
  189. .page-header h2,
  190. .page-header h3 {
  191. margin-top: 5px;
  192. }
  193. .page-header .lead {
  194. margin-bottom: 5px;
  195. }
  196. .page-sidebar {
  197. border-left: 1px solid #aaa;
  198. }
  199. html,
  200. body {
  201. height: 100%;
  202. /* The html and body elements cannot have any padding or margin. */
  203. }
  204. /* Wrapper for page content to push down footer */
  205. #wrap {
  206. min-height: 100%;
  207. height: auto;
  208. /* Negative indent footer by its height */
  209. margin: auto;
  210. margin: 0 auto -140px;
  211. /* Pad bottom by footer height */
  212. padding: 0 0 140px;
  213. }
  214. /* Set the fixed height of the footer here */
  215. #footer {
  216. height: 140px;
  217. background-color: #f5f5f5;
  218. }
  219. .page-footer {
  220. margin: 20px 0px 0px;
  221. border-top: 1px solid #eee;
  222. }
  223. /* website group */
  224. .view-selector {
  225. margin-bottom: 15px;
  226. }
  227. /* post and post list */
  228. .post {
  229. padding: 7px 0px;
  230. word-wrap: break-word;
  231. border-bottom: 1px solid #eee;
  232. }
  233. .post .img-responsive {
  234. border-radius: 4px;
  235. }
  236. .post .media-link {
  237. display: block;
  238. min-width: 50px;
  239. min-height: 50px;
  240. }
  241. .post .media-object {
  242. border-radius: 4px;
  243. max-width: 50px;
  244. }
  245. .post .media-heading {
  246. margin-bottom: 12px;
  247. }
  248. .parent-post .post {
  249. border: none;
  250. }
  251. .child-post {
  252. border: 1px solid #eee;
  253. padding-left: 15px;
  254. background-color: #f8f8f8;
  255. margin-top: 0px;
  256. }
  257. textarea {
  258. resize: vertical;
  259. }
  260. .post-add-textarea {
  261. height: 200px !important;
  262. }