style.css 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. html {
  2. min-height: 100%;
  3. font-size: 10px;
  4. font-family: sans-serif;
  5. }
  6. body {
  7. font-family: 'Source Sans Pro','Helvetica Neue',Helvetica,Arial,sans-serif;
  8. font-weight: 400;
  9. overflow-x: hidden;
  10. overflow-y: auto;
  11. min-height: 100%;
  12. color: #333;
  13. }
  14. .fa {
  15. font-size: 90%;
  16. }
  17. .wrapper {
  18. min-height: 100%;
  19. position: relative;
  20. overflow: hidden;
  21. }
  22. .sidebar {
  23. position: fixed;
  24. top: 0;
  25. left: 0;
  26. min-height: 100%;
  27. width: 230px;
  28. z-index: 810;
  29. background-color: #222;
  30. /*
  31. color: #4B4B4B;
  32. */
  33. color: #6D6D6D;
  34. }
  35. .profile p {
  36. font-size: 15px;
  37. text-transform: uppercase;
  38. margin-bottom: 0px;
  39. }
  40. .profile a{
  41. color: rgb(112, 100, 172);
  42. transition-duration: 0.2s;
  43. font-size: 12px;
  44. }
  45. .profile a:hover{
  46. color: rgba(112, 100, 172, 0.6);
  47. text-decoration: none;
  48. }
  49. .filter {
  50. position: relative;
  51. width: 100%;
  52. padding: 10px;
  53. }
  54. .filter ul {
  55. list-style: none;
  56. padding: 0;
  57. margin: 0;
  58. }
  59. .filter li {
  60. display: block;
  61. padding: 5px;
  62. margin-bottom: 10px;
  63. }
  64. .filter li:last-child{
  65. text-align: right;
  66. }
  67. .filter li > label {
  68. display: block;
  69. float: left;
  70. background-color: #222;
  71. height: 16px;
  72. padding: 0px;
  73. /*
  74. color: #4B4B4B;
  75. */
  76. color: #6d6d6d;
  77. font-size: 12px;
  78. overflow: hidden;
  79. font-weight: 400;
  80. text-transform: uppercase;
  81. letter-spacing: 0px;
  82. }
  83. .filter li > h3 {
  84. text-transform: uppercase;
  85. font-size: 18px;
  86. border-bottom: 1px solid;
  87. padding-bottom: 1px;
  88. margin-top: 5px;
  89. margin-bottom: 2px;
  90. }
  91. .filter input[type="text"] {
  92. width: 100%;
  93. display: block;
  94. outline: none;
  95. border: none;
  96. height: 25px;
  97. line-height: 25px;
  98. font-size: 16px;
  99. padding: 0;
  100. background-color: #4B4B4B;
  101. border-radius: 2px;
  102. color: #7B7B7B;
  103. font-size: 12px;
  104. padding: 5px;
  105. }
  106. .filter button {
  107. background-color: rgb(112, 100, 172);
  108. height: 25px;
  109. padding: 2px;
  110. font-size: 12px;
  111. width: 50%;
  112. border-radius: 2px;
  113. text-transform: uppercase;
  114. border: none;
  115. color: #c0c0c0;
  116. transition-duration: 0.2s;
  117. }
  118. .filter button:hover{
  119. background-color: rgba(112, 100, 172, 0.8);
  120. }
  121. .filter tags-input {
  122. margin-top:20px;
  123. width: 100%;
  124. }
  125. tags-input .tags {
  126. width: 100%;
  127. background-color: #4B4B4B;
  128. border: none;
  129. border-radius: 2px;
  130. }
  131. tags-input .tags.focused,
  132. tags-input.ng-invalid .tags{
  133. border: none;
  134. box-shadow: none;
  135. }
  136. tags-input .tags .tag-item {
  137. color: #c0c0c0;
  138. background-color: rgb(112, 100, 172);
  139. border: 1px solid rgb(112, 100, 172);
  140. border-radius: 4px;
  141. margin: 2px;
  142. padding: 0 5px;
  143. display: inline-block;
  144. float: left;
  145. font-size: 11px;
  146. height: 24px;
  147. line-height: 20px;
  148. }
  149. .content-wrapper {
  150. background-color: #fff;
  151. z-index: 800;
  152. margin-left: 230px;
  153. width: 100%;
  154. color: #202020;
  155. }
  156. .news-wrapper {
  157. width: 40%;
  158. float: left;
  159. padding: 0px;
  160. margin-bottom:30px;
  161. }
  162. .news-wrapper section {
  163. padding: 10px;
  164. }
  165. .news-wrapper section.even-news {
  166. background-color: #fcfcfc;
  167. }
  168. .news-wrapper section.odd-news {
  169. background-color: #f2f2f2;
  170. }
  171. ul.news-meta {
  172. padding: 0px;
  173. font-size: 12px;
  174. border-bottom: 1px solid rgba(0,0,0,0.05);
  175. padding-bottom: 3px;
  176. margin-bottom: 10px;
  177. }
  178. ul.news-meta li {
  179. display: inline;
  180. margin-right: 10px;
  181. }
  182. .article-wrapper {
  183. position:fixed;
  184. max-height:100%;
  185. overflow-y:auto;
  186. right:5px;
  187. width: 41%;
  188. }
  189. /*
  190. .summary:hover { max-height: 999px; }
  191. .summary { max-height: 35px; transition:0.5s;overflow-y:hidden;}
  192. */
  193. .summary {font-size:12px;}
  194. .keywords { max-height: 40px; transition:0.5s;overflow-y:hidden;margin-bottom:10px; text-overflow: ellipsis;}
  195. .keywords:hover { max-height: 999px; }
  196. .tags {
  197. margin-bottom: 5px;
  198. }
  199. .tags .tag {
  200. display: inline-block;
  201. margin-right: 5px;
  202. font-size: 13px;
  203. }
  204. .tag .close {
  205. font-size: 14px;
  206. margin-left: 5px;
  207. }
  208. .pagination {
  209. height:30px;
  210. background-color:white;
  211. width:40%;
  212. position:fixed;
  213. bottom:0px;
  214. margin:0px;
  215. text-align:center;
  216. }
  217. .pagination input { width: 40px;}
  218. #news img { max-width:90%; }