style.css 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  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 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. }
  177. ul.news-meta li {
  178. display: inline;
  179. margin-right: 10px;
  180. }
  181. .progress {
  182. width: 100px;
  183. height: 10px;
  184. border: 0px;
  185. border-radius: 2px;
  186. background: #e0e0e0;
  187. box-shadow: none;
  188. }
  189. .progress-bar {
  190. background: rgba(112, 100, 172, 1);
  191. }
  192. .news-wrapper .navigation div {
  193. float: left;
  194. width: 50%;
  195. margin: 5px 0px;
  196. }
  197. .news-wrapper .navigation a {
  198. cursor: pointer;
  199. color: rgba(112, 100, 172, 0.8);
  200. text-transform: uppercase;
  201. font-size: 85%;
  202. }
  203. .news-wrapper .navigation a:hover {
  204. color: rgba(112, 100, 172, 1);
  205. text-decoration: none;
  206. }
  207. .news-wrapper .navigation .read-more {
  208. text-align: right;
  209. }
  210. .news-wrapper .navigation:after{
  211. content: '';
  212. display: block;
  213. clear: both;
  214. }
  215. .article-wrapper {
  216. position:fixed;
  217. max-height:100%;
  218. overflow-y:auto;
  219. right:5px;
  220. width: 41%;
  221. }
  222. .title h4 {
  223. width: 92%;
  224. float: left;
  225. color: rgb(27, 77, 14) !important;
  226. }
  227. .title i {
  228. float: left;
  229. padding: 10px;
  230. font-size: 140%;
  231. }
  232. .title a {
  233. color: rgba(112, 100, 172, 0.8);
  234. }
  235. .title a:hover {
  236. color: rgba(112, 100, 172, 1);
  237. }
  238. .title:after {
  239. content: '';
  240. display: block;
  241. clear: both;
  242. }
  243. .labels i {
  244. float: left;
  245. padding: 5px;
  246. color: rgb(27, 77, 14)
  247. }
  248. .labels div {
  249. background-color: rgb(27, 77, 14);
  250. border-radius: 6px;
  251. padding: 4px;
  252. color: white;
  253. font-size: 10px;
  254. margin-right: 3px;
  255. float: left;
  256. margin-bottom: 2px;
  257. }
  258. .labels:after{
  259. content: '';
  260. display: block;
  261. clear: both;
  262. }
  263. /*
  264. .summary:hover { max-height: 999px; }
  265. .summary { max-height: 35px; transition:0.5s;overflow-y:hidden;}
  266. */
  267. .summary {
  268. font-size:12px;
  269. text-align: justify;
  270. }
  271. .keywords { max-height: 40px; transition:0.5s;overflow-y:hidden;margin-bottom:10px; text-overflow: ellipsis;}
  272. .keywords:hover { max-height: 999px; }
  273. .tags {
  274. margin-bottom: 5px;
  275. }
  276. .tags .tag {
  277. display: inline-block;
  278. margin-right: 5px;
  279. font-size: 13px;
  280. }
  281. .tag .close {
  282. font-size: 14px;
  283. margin-left: 5px;
  284. }
  285. .pagination {
  286. height:30px;
  287. background-color:white;
  288. width:40%;
  289. position:fixed;
  290. bottom:0px;
  291. margin:0px;
  292. text-align:center;
  293. }
  294. .pagination input { width: 40px;}
  295. #news img { max-width:90%; }
  296. .kw, a:hover { cursor:pointer;}