style.css 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366
  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: 41%;
  237. }
  238. .title h4 {
  239. width: 92%;
  240. float: left;
  241. color: rgb(27, 77, 14) !important;
  242. }
  243. .title i {
  244. float: left;
  245. padding: 10px;
  246. font-size: 140%;
  247. }
  248. .title a {
  249. color: rgba(112, 100, 172, 0.8);
  250. }
  251. .title a:hover {
  252. color: rgba(112, 100, 172, 1);
  253. }
  254. .title:after {
  255. content: '';
  256. display: block;
  257. clear: both;
  258. }
  259. .labels i {
  260. float: left;
  261. padding: 5px;
  262. color: rgb(27, 77, 14)
  263. }
  264. .labels div {
  265. background-color: rgb(27, 77, 14);
  266. border-radius: 6px;
  267. padding: 4px;
  268. color: white;
  269. font-size: 10px;
  270. margin-right: 3px;
  271. float: left;
  272. margin-bottom: 2px;
  273. }
  274. .labels:after{
  275. content: '';
  276. display: block;
  277. clear: both;
  278. }
  279. /*
  280. .summary:hover { max-height: 999px; }
  281. .summary { max-height: 35px; transition:0.5s;overflow-y:hidden;}
  282. */
  283. .summary {
  284. font-size:12px;
  285. text-align: justify;
  286. }
  287. .keywords { max-height: 40px; transition:0.5s;overflow-y:hidden;margin-bottom:10px; text-overflow: ellipsis;}
  288. .keywords:hover { max-height: 999px; }
  289. .tags {
  290. margin-bottom: 5px;
  291. }
  292. .tags .tag {
  293. display: inline-block;
  294. margin-right: 5px;
  295. font-size: 13px;
  296. }
  297. .tag .close {
  298. font-size: 14px;
  299. margin-left: 5px;
  300. }
  301. .pagination {
  302. height:30px;
  303. background-color:white;
  304. width:40%;
  305. position:fixed;
  306. bottom:0px;
  307. margin:0px;
  308. text-align:center;
  309. }
  310. .pagination input { width: 40px;}
  311. #news img { max-width:90%; }
  312. .kw, a:hover { cursor:pointer;}