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