style.css 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  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. }
  63. .filter li:last-child{
  64. text-align: right;
  65. }
  66. .filter li > label {
  67. display: block;
  68. float: left;
  69. background-color: #222;
  70. height: 16px;
  71. padding: 0px;
  72. /*
  73. color: #4B4B4B;
  74. */
  75. color: #6d6d6d;
  76. font-size: 12px;
  77. overflow: hidden;
  78. font-weight: 400;
  79. text-transform: uppercase;
  80. letter-spacing: 0px;
  81. }
  82. .filter li > h3 {
  83. text-transform: uppercase;
  84. font-size: 18px;
  85. border-bottom: 1px solid;
  86. padding-bottom: 1px;
  87. margin-top: 5px;
  88. margin-bottom: 10px;
  89. }
  90. .filter input[type="text"], .filter select {
  91. width: 100%;
  92. display: block;
  93. outline: none;
  94. border: none;
  95. height: 25px;
  96. line-height: 25px;
  97. font-size: 16px;
  98. padding: 0;
  99. background-color: #4B4B4B;
  100. border-radius: 2px;
  101. color: #7B7B7B;
  102. font-size: 12px;
  103. padding: 5px;
  104. }
  105. .filter button {
  106. background-color: rgb(112, 100, 172);
  107. height: 25px;
  108. padding: 2px;
  109. font-size: 12px;
  110. width: 50%;
  111. border-radius: 2px;
  112. text-transform: uppercase;
  113. border: none;
  114. color: #c0c0c0;
  115. transition-duration: 0.2s;
  116. display:block;
  117. }
  118. .filter li.buttons {
  119. margin-top: 10px;
  120. }
  121. .filter li.buttons button{
  122. float: right;
  123. width: 48%;
  124. }
  125. .filter li.buttons .reset{
  126. float: left;
  127. background-color: #4B4B4B;
  128. }
  129. .filter button:hover{
  130. background-color: rgba(112, 100, 172, 0.8);
  131. }
  132. .filter li .select {
  133. }
  134. .filter tags-input {
  135. margin-top:20px;
  136. width: 100%;
  137. }
  138. tags-input .tags {
  139. width: 100%;
  140. background-color: #4B4B4B;
  141. border: none;
  142. border-radius: 2px;
  143. }
  144. tags-input .tags.focused,
  145. tags-input.ng-invalid .tags{
  146. border: none;
  147. box-shadow: none;
  148. }
  149. tags-input .remove-button:active {
  150. color: #4B4B4B!important;
  151. }
  152. tags-input .tags .tag-item {
  153. color: #c0c0c0;
  154. background-color: rgb(112, 100, 172);
  155. border: 1px solid rgb(112, 100, 172);
  156. border-radius: 4px;
  157. margin: 2px;
  158. padding: 0 5px;
  159. display: inline-block;
  160. float: left;
  161. font-size: 11px;
  162. height: 24px;
  163. line-height: 20px;
  164. }
  165. .content-wrapper {
  166. background-color: #fff;
  167. z-index: 800;
  168. margin-left: 230px;
  169. width: 100%;
  170. color: #202020;
  171. }
  172. .news-wrapper {
  173. width: 40%;
  174. float: left;
  175. padding: 0px;
  176. margin-bottom:30px;
  177. }
  178. .news-wrapper section {
  179. padding: 10px;
  180. }
  181. .news-wrapper section.even-news {
  182. background-color: #fcfcfc;
  183. }
  184. .news-wrapper section.odd-news {
  185. background-color: #f2f2f2;
  186. }
  187. ul.news-meta {
  188. padding: 0px;
  189. font-size: 12px;
  190. border-bottom: 1px solid rgba(0,0,0,0.05);
  191. padding-bottom: 3px;
  192. }
  193. ul.news-meta li {
  194. display: inline;
  195. margin-right: 10px;
  196. }
  197. .progress {
  198. width: 100px;
  199. height: 10px;
  200. border: 0px;
  201. border-radius: 2px;
  202. background: #e0e0e0;
  203. box-shadow: none;
  204. }
  205. .progress-bar {
  206. background: rgba(112, 100, 172, 1);
  207. }
  208. .news-wrapper .navigation div {
  209. float: left;
  210. width: 50%;
  211. margin: 5px 0px;
  212. }
  213. .news-wrapper .navigation a {
  214. cursor: pointer;
  215. color: rgba(112, 100, 172, 0.8);
  216. text-transform: uppercase;
  217. font-size: 85%;
  218. }
  219. .news-wrapper .navigation a:hover {
  220. color: rgba(112, 100, 172, 1);
  221. text-decoration: none;
  222. }
  223. .news-wrapper .navigation .read-more {
  224. text-align: right;
  225. }
  226. .news-wrapper .navigation:after{
  227. content: '';
  228. display: block;
  229. clear: both;
  230. }
  231. .article-wrapper {
  232. position:fixed;
  233. max-height:100%;
  234. overflow-y:auto;
  235. right:5px;
  236. width: 45%;
  237. }
  238. .article-wrapper h2 {
  239. color: rgb(27, 77, 14) !important;
  240. }
  241. .article-wrapper a {
  242. color: rgb(27, 77, 14);
  243. background-color: #f4f4f4;
  244. }
  245. .article-wrapper a:hover {
  246. color: rgb(27, 77, 14);
  247. text-decoration: none;
  248. }
  249. .title h4 {
  250. width: 92%;
  251. float: left;
  252. color: rgb(27, 77, 14) !important;
  253. }
  254. .title i {
  255. float: left;
  256. padding: 10px;
  257. font-size: 140%;
  258. }
  259. .title a {
  260. color: rgba(112, 100, 172, 0.8);
  261. }
  262. .title a:hover {
  263. color: rgba(112, 100, 172, 1);
  264. }
  265. .title:after {
  266. content: '';
  267. display: block;
  268. clear: both;
  269. }
  270. .labels i {
  271. float: left;
  272. padding: 5px;
  273. color: rgb(27, 77, 14)
  274. }
  275. .labels div {
  276. background-color: rgb(27, 77, 14);
  277. border-radius: 6px;
  278. padding: 4px;
  279. color: white;
  280. font-size: 10px;
  281. margin-right: 3px;
  282. float: left;
  283. margin-bottom: 2px;
  284. }
  285. .labels:after{
  286. content: '';
  287. display: block;
  288. clear: both;
  289. }
  290. /*
  291. .summary:hover { max-height: 999px; }
  292. .summary { max-height: 35px; transition:0.5s;overflow-y:hidden;}
  293. */
  294. .summary {
  295. font-size:12px;
  296. text-align: justify;
  297. }
  298. .keywords { max-height: 40px; transition:0.5s;overflow-y:hidden;margin-bottom:10px; text-overflow: ellipsis;}
  299. .keywords:hover { max-height: 999px; }
  300. .tags {
  301. margin-bottom: 5px;
  302. }
  303. .tags .tag {
  304. display: inline-block;
  305. margin-right: 5px;
  306. font-size: 13px;
  307. }
  308. .tag .close {
  309. font-size: 14px;
  310. margin-left: 5px;
  311. }
  312. .pagination {
  313. height:30px;
  314. background-color:white;
  315. width:40%;
  316. position:fixed;
  317. bottom:0px;
  318. margin:0px;
  319. text-align:center;
  320. }
  321. .pagination ul {
  322. list-style: none;
  323. margin: 0px;
  324. padding: 0;
  325. height: 100%;
  326. }
  327. .pagination ul li {
  328. display: inline-block;
  329. width: 35px;
  330. }
  331. .pagination ul li a{
  332. display: block;
  333. padding: 5px;
  334. color: rgba(112, 100, 172, 0.8);
  335. }
  336. .pagination ul li a:hover{
  337. color: rgba(112, 100, 172, 1);
  338. text-decoration: none;
  339. background-color: #f4f4f4;
  340. }
  341. .pagination ul li a:active, a:focus{
  342. text-decoration: none;
  343. }
  344. .current { background-color: #f4f4f4; }
  345. .pagination input { width: 40px;}
  346. #news img { max-width:90%; }
  347. .kw, a:hover { cursor:pointer;}