style.css 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  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"], .filter select {
  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. display:block;
  118. }
  119. .filter button:hover{
  120. background-color: rgba(112, 100, 172, 0.8);
  121. }
  122. .filter tags-input {
  123. margin-top:20px;
  124. width: 100%;
  125. }
  126. tags-input .tags {
  127. width: 100%;
  128. background-color: #4B4B4B;
  129. border: none;
  130. border-radius: 2px;
  131. }
  132. tags-input .tags.focused,
  133. tags-input.ng-invalid .tags{
  134. border: none;
  135. box-shadow: none;
  136. }
  137. tags-input .tags .tag-item {
  138. color: #c0c0c0;
  139. background-color: rgb(112, 100, 172);
  140. border: 1px solid rgb(112, 100, 172);
  141. border-radius: 4px;
  142. margin: 2px;
  143. padding: 0 5px;
  144. display: inline-block;
  145. float: left;
  146. font-size: 11px;
  147. height: 24px;
  148. line-height: 20px;
  149. }
  150. .content-wrapper {
  151. background-color: #fff;
  152. z-index: 800;
  153. margin-left: 230px;
  154. width: 100%;
  155. color: #202020;
  156. }
  157. .news-wrapper {
  158. width: 40%;
  159. float: left;
  160. padding: 0px;
  161. margin-bottom:30px;
  162. }
  163. .news-wrapper section {
  164. padding: 10px;
  165. }
  166. .news-wrapper section.even-news {
  167. background-color: #fcfcfc;
  168. }
  169. .news-wrapper section.odd-news {
  170. background-color: #f2f2f2;
  171. }
  172. ul.news-meta {
  173. padding: 0px;
  174. font-size: 12px;
  175. border-bottom: 1px solid rgba(0,0,0,0.05);
  176. padding-bottom: 3px;
  177. margin-bottom: 10px;
  178. }
  179. ul.news-meta li {
  180. display: inline;
  181. margin-right: 10px;
  182. }
  183. .progress {
  184. width: 100px;
  185. height: 10px;
  186. border: 0px;
  187. border-radius: 2px;
  188. background: #e0e0e0;
  189. box-shadow: none;
  190. }
  191. .progress-bar {
  192. background: rgba(112, 100, 172, 1);
  193. }
  194. .news-wrapper .navigation div {
  195. float: left;
  196. width: 50%;
  197. margin: 5px 0px;
  198. }
  199. .news-wrapper .navigation a {
  200. cursor: pointer;
  201. color: rgba(112, 100, 172, 0.8);
  202. text-transform: uppercase;
  203. font-size: 85%;
  204. }
  205. .news-wrapper .navigation a:hover {
  206. color: rgba(112, 100, 172, 1);
  207. text-decoration: none;
  208. }
  209. .news-wrapper .navigation .read-more {
  210. text-align: right;
  211. }
  212. .news-wrapper .navigation:after{
  213. content: '';
  214. display: block;
  215. clear: both;
  216. }
  217. .article-wrapper {
  218. position:fixed;
  219. max-height:100%;
  220. overflow-y:auto;
  221. right:5px;
  222. width: 41%;
  223. }
  224. .title h4 {
  225. width: 92%;
  226. float: left;
  227. color: rgb(27, 77, 14);
  228. }
  229. .title i {
  230. float: left;
  231. padding: 10px;
  232. font-size: 140%;
  233. }
  234. .title a {
  235. color: rgba(112, 100, 172, 0.8);
  236. }
  237. .title a:hover {
  238. color: rgba(112, 100, 172, 1);
  239. }
  240. .title:after {
  241. content: '';
  242. display: block;
  243. clear: both;
  244. }
  245. .labels i {
  246. float: left;
  247. padding: 5px;
  248. color: rgb(27, 77, 14)
  249. }
  250. .labels div {
  251. background-color: rgb(27, 77, 14);
  252. border-radius: 6px;
  253. padding: 4px;
  254. color: white;
  255. font-size: 10px;
  256. margin-right: 3px;
  257. float: left;
  258. margin-bottom: 2px;
  259. }
  260. .labels:after{
  261. content: '';
  262. display: block;
  263. clear: both;
  264. }
  265. /*
  266. .summary:hover { max-height: 999px; }
  267. .summary { max-height: 35px; transition:0.5s;overflow-y:hidden;}
  268. */
  269. .summary {
  270. font-size:12px;
  271. text-align: justify;
  272. }
  273. .keywords { max-height: 40px; transition:0.5s;overflow-y:hidden;margin-bottom:10px; text-overflow: ellipsis;}
  274. .keywords:hover { max-height: 999px; }
  275. .tags {
  276. margin-bottom: 5px;
  277. }
  278. .tags .tag {
  279. display: inline-block;
  280. margin-right: 5px;
  281. font-size: 13px;
  282. }
  283. .tag .close {
  284. font-size: 14px;
  285. margin-left: 5px;
  286. }
  287. .pagination {
  288. height:30px;
  289. background-color:white;
  290. width:40%;
  291. position:fixed;
  292. bottom:0px;
  293. margin:0px;
  294. text-align:center;
  295. }
  296. .pagination input { width: 40px;}
  297. #news img { max-width:90%; }