origine.css 19 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067
  1. @charset "UTF-8";
  2. /*=== FONTS */
  3. @font-face {
  4. font-family: "OpenSans";
  5. src: url("../fonts/openSans.woff") format("woff");
  6. }
  7. /*=== GENERAL */
  8. /*============*/
  9. html, body {
  10. height: 100%;
  11. font-family: "OpenSans", "Cantarell", "Helvetica", "Arial", "PingFang SC", "Microsoft YaHei", sans-serif;
  12. background: #fafafa;
  13. }
  14. /*=== Links */
  15. a, button.as-link {
  16. color: #0062be;
  17. outline: none;
  18. }
  19. /*=== Forms */
  20. legend {
  21. margin: 20px 0 5px;
  22. padding: 5px 0;
  23. border-bottom: 1px solid #ddd;
  24. font-size: 1.4em;
  25. }
  26. label {
  27. min-height: 25px;
  28. padding: 5px 0;
  29. cursor: pointer;
  30. }
  31. textarea {
  32. width: 360px;
  33. height: 100px;
  34. }
  35. input, select, textarea {
  36. min-height: 25px;
  37. padding: 5px;
  38. background: #fdfdfd;
  39. border: 1px solid #bbb;
  40. border-radius: 3px;
  41. color: #666;
  42. line-height: 25px;
  43. vertical-align: middle;
  44. box-shadow: 0 2px 2px #eee inset;
  45. }
  46. option {
  47. padding: 0 .5em;
  48. }
  49. input:focus, select:focus, textarea:focus {
  50. color: #0062be;
  51. border-color: #33bbff;
  52. box-shadow: 0 2px 2px #ddddff inset;
  53. }
  54. input:invalid, select:invalid {
  55. border-color: #f00;
  56. box-shadow: 0 0 2px 2px #fdd inset;
  57. }
  58. input:disabled, select:disabled {
  59. background: #eee;
  60. }
  61. input.extend {
  62. transition: width 200ms linear;
  63. -moz-transition: width 200ms linear;
  64. -webkit-transition: width 200ms linear;
  65. -o-transition: width 200ms linear;
  66. -ms-transition: width 200ms linear;
  67. }
  68. /*=== Tables */
  69. table {
  70. border-collapse: collapse;
  71. }
  72. tr, th, td {
  73. padding: 0.5em;
  74. border: 1px solid #ddd;
  75. }
  76. th {
  77. background: #f6f6f6;
  78. }
  79. form td,
  80. form th {
  81. font-weight: normal;
  82. text-align: center;
  83. }
  84. /*=== COMPONENTS */
  85. /*===============*/
  86. /*=== Forms */
  87. .form-group.form-actions {
  88. padding: 5px 0;
  89. background: #f4f4f4;
  90. border-top: 1px solid #ddd;
  91. }
  92. .form-group.form-actions .btn {
  93. margin: 0 10px;
  94. }
  95. .form-group .group-name {
  96. padding: 10px 0;
  97. text-align: right;
  98. }
  99. .form-group .group-controls {
  100. min-height: 25px;
  101. padding: 5px 0;
  102. }
  103. .form-group table {
  104. margin: 10px 0 0 220px;
  105. }
  106. /*=== Buttons */
  107. .stick {
  108. vertical-align: middle;
  109. font-size: 0;
  110. }
  111. .stick input,
  112. .stick .btn {
  113. border-radius: 0;
  114. }
  115. .stick .btn:first-child,
  116. .stick input:first-child {
  117. border-radius: 3px 0 0 3px;
  118. }
  119. .stick .btn-important:first-child {
  120. border-right: 1px solid #06f;
  121. }
  122. .stick .btn:last-child,
  123. .stick input:last-child {
  124. border-radius: 0 3px 3px 0;
  125. }
  126. .stick .btn + .btn,
  127. .stick .btn + input,
  128. .stick .btn + .dropdown > .btn,
  129. .stick input + .btn,
  130. .stick input + input,
  131. .stick input + .dropdown > .btn,
  132. .stick .dropdown + .btn,
  133. .stick .dropdown + input,
  134. .stick .dropdown + .dropdown > .btn {
  135. border-left: none;
  136. }
  137. .stick input + .btn {
  138. border-top: 1px solid #bbb;
  139. }
  140. .stick .btn + .dropdown > .btn {
  141. border-left: none;
  142. border-radius: 0 3px 3px 0;
  143. }
  144. .btn {
  145. display: inline-block;
  146. min-height: 37px;
  147. min-width: 15px;
  148. margin: 0;
  149. padding: 5px 10px;
  150. background: #fff;
  151. background: linear-gradient(to bottom, #fff 0%, #eee 100%);
  152. background: -moz-linear-gradient(top, #fff 0%, #eee 100%);
  153. background: -webkit-linear-gradient(top, #fff 0%, #eee 100%);
  154. background: -o-linear-gradient(top, #fff 0%, #eee 100%);
  155. background: -ms-linear-gradient(top, #fff 0%, #eee 100%);
  156. border-radius: 3px;
  157. border: 1px solid #ddd;
  158. border-bottom: 1px solid #aaa;
  159. border-right: 1px solid #aaa;
  160. color: #666;
  161. text-shadow: 0px -1px 0 #ddd;
  162. font-size: 0.9rem;
  163. vertical-align: middle;
  164. cursor: pointer;
  165. overflow: hidden;
  166. }
  167. a.btn {
  168. min-height: 25px;
  169. line-height: 25px;
  170. }
  171. .btn:hover {
  172. background: #f0f0f0;
  173. background: linear-gradient(to bottom, #f8f8f8, #f0f0f0);
  174. background: -moz-linear-gradient(top, #f8f8f8 0%, #f0f0f0 100%);
  175. background: -webkit-linear-gradient(top, #f8f8f8 0%, #f0f0f0 100%);
  176. background: -o-linear-gradient(top, #f8f8f8 0%, #f0f0f0 100%);
  177. background: -ms-linear-gradient(top, #f8f8f8 0%, #f0f0f0 100%);
  178. text-decoration: none;
  179. }
  180. .btn.active,
  181. .btn:active,
  182. .dropdown-target:target ~ .btn.dropdown-toggle {
  183. box-shadow: 0px 2px 4px #e0e0e0 inset, 0px 1px 2px #fafafa;
  184. background: #eee;
  185. }
  186. .btn-important {
  187. background: #0084CC;
  188. background: linear-gradient(to bottom, #0084CC, #0045CC);
  189. background: -moz-linear-gradient(top, #0084CC 0%, #0045CC 100%);
  190. background: -webkit-linear-gradient(top, #0084CC 0%, #0045CC 100%);
  191. background: -o-linear-gradient(top, #0084CC 0%, #0045CC 100%);
  192. background: -ms-linear-gradient(top, #0084CC 0%, #0045CC 100%);
  193. color: #fff;
  194. border: 1px solid #0062B7;
  195. text-shadow: 0px -1px 0 #aaa;
  196. font-weight: normal;
  197. }
  198. .btn-important:hover {
  199. background: linear-gradient(to bottom, #0066CC, #0045CC);
  200. background: -moz-linear-gradient(top, #0066CC 0%, #0045CC 100%);
  201. background: -webkit-linear-gradient(top, #0066CC 0%, #0045CC 100%);
  202. background: -o-linear-gradient(top, #0066CC 0%, #0045CC 100%);
  203. background: -ms-linear-gradient(top, #0066CC 0%, #0045CC 100%);
  204. }
  205. .btn-important:active {
  206. background: #0044CB;
  207. box-shadow: none;
  208. }
  209. .btn-attention {
  210. background: #E95B57;
  211. background: linear-gradient(to bottom, #E95B57, #BD362F);
  212. background: -moz-linear-gradient(top, #E95B57 0%, #BD362F 100%);
  213. background: -webkit-linear-gradient(top, #E95B57 0%, #BD362F 100%);
  214. background: -o-linear-gradient(top, #E95B57 0%, #BD362F 100%);
  215. background: -ms-linear-gradient(top, #E95B57 0%, #BD362F 100%);
  216. color: #fff;
  217. border: 1px solid #C44742;
  218. text-shadow: 0px -1px 0px #666;
  219. }
  220. .btn-attention:hover {
  221. background: linear-gradient(to bottom, #D14641, #BD362F);
  222. background: -moz-linear-gradient(top, #D14641 0%, #BD362F 100%);
  223. background: -webkit-linear-gradient(top, #D14641 0%, #BD362F 100%);
  224. background: -o-linear-gradient(top, #D14641 0%, #BD362F 100%);
  225. background: -ms-linear-gradient(top, #D14641 0%, #BD362F 100%);
  226. }
  227. .btn-attention:active {
  228. background: #BD362F;
  229. box-shadow: none;
  230. }
  231. /*=== Navigation */
  232. .nav-list .nav-header,
  233. .nav-list .item {
  234. height: 2.5em;
  235. line-height: 2.5em;
  236. font-size: 0.9rem;
  237. }
  238. .nav-list .item:hover {
  239. background: #fafafa;
  240. }
  241. .nav-list .item:hover a {
  242. color: #003388;
  243. }
  244. .nav-list .item.active {
  245. background: #0062BE;
  246. color: #fff;
  247. }
  248. .nav-list .item.active a {
  249. color: #fff;
  250. }
  251. .nav-list .disable {
  252. color: #aaa;
  253. background: #fafafa;
  254. text-align: center;
  255. }
  256. .nav-list .item > a {
  257. padding: 0 10px;
  258. }
  259. .nav-list a:hover {
  260. text-decoration: none;
  261. }
  262. .nav-list .item.empty a {
  263. color: #f39c12;
  264. }
  265. .nav-list .item.active.empty a {
  266. color: #fff;
  267. background: #f39c12;
  268. }
  269. .nav-list .item.error a {
  270. color: #BD362F;
  271. }
  272. .nav-list .item.active.error a {
  273. color: #fff;
  274. background: #BD362F;
  275. }
  276. .nav-list .nav-header {
  277. padding: 0 10px;
  278. color: #888;
  279. background: #f4f4f4;
  280. border-bottom: 1px solid #ddd;
  281. font-weight: bold;
  282. text-shadow: 0 0 1px #ddd;
  283. }
  284. .nav-list .nav-form {
  285. padding: 3px;
  286. text-align: center;
  287. }
  288. .nav-head {
  289. margin: 0;
  290. background: #fff;
  291. background: linear-gradient(to bottom, #fff, #f0f0f0);
  292. background: -moz-linear-gradient(top, #fff 0%, #f0f0f0 100%);
  293. background: -webkit-linear-gradient(top, #fff 0%, #f0f0f0 100%);
  294. background: -o-linear-gradient(top, #fff 0%, #f0f0f0 100%);
  295. background: -ms-linear-gradient(top, #fff 0%, #f0f0f0 100%);
  296. border-bottom: 1px solid #ddd;
  297. text-align: right;
  298. }
  299. .nav-head .item {
  300. padding: 5px 10px;
  301. font-size: 0.9rem;
  302. line-height: 1.5rem;
  303. }
  304. /*=== Horizontal-list */
  305. .horizontal-list {
  306. margin: 0;
  307. padding: 0;
  308. }
  309. .horizontal-list .item {
  310. vertical-align: middle;
  311. }
  312. /*=== Dropdown */
  313. .dropdown-menu {
  314. margin: 5px 0 0;
  315. padding: 5px 0;
  316. border: 1px solid #ddd;
  317. border-radius: 5px;
  318. box-shadow: 3px 3px 3px #ddd;
  319. font-size: 0.8rem;
  320. text-align: left;
  321. }
  322. .dropdown-menu::after {
  323. content: "";
  324. position: absolute;
  325. top: -6px;
  326. right: 13px;
  327. width: 10px;
  328. height: 10px;
  329. background: #fff;
  330. border-top: 1px solid #ddd;
  331. border-left: 1px solid #ddd;
  332. z-index: -10;
  333. transform: rotate(45deg);
  334. -moz-transform: rotate(45deg);
  335. -webkit-transform: rotate(45deg);
  336. -ms-transform: rotate(45deg);
  337. }
  338. .dropdown-header {
  339. padding: 0 5px 5px;
  340. color: #888;
  341. font-weight: bold;
  342. text-align: left;
  343. }
  344. .dropdown-menu > .item > a,
  345. .dropdown-menu > .item > span,
  346. .dropdown-menu > .item > .as-link {
  347. padding: 0 22px;
  348. line-height: 2.5em;
  349. font-size: 0.8rem;
  350. }
  351. .dropdown-menu > .item:hover {
  352. background: #0062BE;
  353. color: #fff;
  354. }
  355. .dropdown-menu > .item[aria-checked="true"] > a::before {
  356. font-weight: bold;
  357. margin: 0 0 0 -14px;
  358. }
  359. .dropdown-menu > .item:hover > a {
  360. color: #fff;
  361. text-decoration: none;
  362. }
  363. .dropdown-menu .input select,
  364. .dropdown-menu .input input {
  365. margin: 0 auto 5px;
  366. padding: 2px 5px;
  367. border-radius: 3px;
  368. }
  369. .separator {
  370. margin: 5px 0;
  371. border-bottom: 1px solid #ddd;
  372. }
  373. /*=== Alerts */
  374. .alert {
  375. margin: 15px auto;
  376. padding: 10px 15px;
  377. background: #f4f4f4;
  378. border: 1px solid #ccc;
  379. border-right: 1px solid #aaa;
  380. border-bottom: 1px solid #aaa;
  381. border-radius: 5px;
  382. color: #aaa;
  383. text-shadow: 0 0 1px #eee;
  384. font-size: 0.9em;
  385. }
  386. .alert-head {
  387. font-size: 1.15em;
  388. }
  389. .alert > a {
  390. color: inherit;
  391. text-decoration: underline;
  392. }
  393. .alert-warn {
  394. background: #ffe;
  395. border: 1px solid #eeb;
  396. color: #c95;
  397. }
  398. .alert-success {
  399. background: #dfd;
  400. border: 1px solid #cec;
  401. color: #484;
  402. }
  403. .alert-error {
  404. background: #fdd;
  405. border: 1px solid #ecc;
  406. color: #844;
  407. }
  408. /*=== Pagination */
  409. .pagination {
  410. background: #fafafa;
  411. text-align: center;
  412. color: #333;
  413. font-size: 0.8em;
  414. }
  415. .content .pagination {
  416. margin: 0;
  417. padding: 0;
  418. }
  419. .pagination .item.pager-current {
  420. font-weight: bold;
  421. font-size: 1.5em;
  422. }
  423. .pagination .item a {
  424. display: block;
  425. color: #333;
  426. font-style: italic;
  427. line-height: 3em;
  428. text-decoration: none;
  429. }
  430. .pagination .item a:hover {
  431. background: #ddd;
  432. }
  433. .pagination:first-child .item {
  434. border-bottom: 1px solid #aaa;
  435. }
  436. .pagination:last-child .item {
  437. border-top: 1px solid #aaa;
  438. }
  439. .pagination .loading,
  440. .pagination a:hover.loading {
  441. background: url("loader.gif") center center no-repeat #fff;
  442. font-size: 0;
  443. }
  444. /*=== Boxes */
  445. .box {
  446. background: #fff;
  447. border-radius: 5px;
  448. box-shadow: 0 0 3px #bbb;
  449. }
  450. .box .box-title {
  451. margin: 0;
  452. padding: 5px 10px;
  453. background: #f6f6f6;
  454. border-bottom: 1px solid #ddd;
  455. border-radius: 5px 5px 0 0;
  456. }
  457. .box .box-content {
  458. min-height: 2.5em;
  459. max-height: 260px;
  460. }
  461. .box .box-content .item {
  462. padding: 0 10px;
  463. font-size: 0.9rem;
  464. line-height: 2.5em;
  465. }
  466. .box .box-content .item .configure {
  467. visibility: hidden;
  468. }
  469. .box .box-content .item:hover .configure {
  470. visibility: visible;
  471. }
  472. /*=== Tree */
  473. .tree {
  474. margin: 10px 0;
  475. }
  476. .tree-folder-title {
  477. position: relative;
  478. padding: 0 10px;
  479. background: #fff;
  480. line-height: 2.5rem;
  481. font-size: 1rem;
  482. }
  483. .tree-folder-title .title {
  484. background: inherit;
  485. color: #444;
  486. }
  487. .tree-folder-title .title:hover {
  488. text-decoration: none;
  489. }
  490. .tree-folder.active .tree-folder-title {
  491. background: #f0f0f0;
  492. font-weight: bold;
  493. }
  494. .tree-folder.active .tree-folder-title .title {
  495. color: #0062BE;
  496. }
  497. .tree-folder-items {
  498. border-top: 1px solid #ccc;
  499. border-bottom: 1px solid #ccc;
  500. background: #f6f6f6;
  501. }
  502. .tree-folder-items > .item {
  503. padding: 0 10px;
  504. line-height: 2.5rem;
  505. font-size: 0.8rem;
  506. }
  507. .tree-folder-items > .item.active {
  508. background: #0062be;
  509. }
  510. .tree-folder-items > .item > a {
  511. text-decoration: none;
  512. }
  513. .tree-folder-items > .item.active > a {
  514. color: #fff;
  515. }
  516. /*=== STRUCTURE */
  517. /*===============*/
  518. /*=== Header */
  519. .header {
  520. height: 85px;
  521. background: #f4f4f4;
  522. }
  523. .header > .item {
  524. padding: 10px;
  525. border-bottom: 1px solid #aaa;
  526. vertical-align: middle;
  527. text-align: center;
  528. }
  529. .header > .item.title{
  530. width: 230px;
  531. }
  532. .header > .item.title h1 {
  533. margin: 0.5em 0;
  534. text-shadow: 1px -1px 0 #ccc;
  535. }
  536. .header > .item.title h1 a {
  537. text-decoration: none;
  538. }
  539. .header > .item.search input {
  540. width: 230px;
  541. }
  542. .header .item.search input:focus {
  543. width: 350px;
  544. }
  545. /*=== Body */
  546. #global {
  547. height: calc(100% - 85px);
  548. }
  549. .aside {
  550. border-right: 1px solid #aaa;
  551. background: #fff;
  552. }
  553. .aside.aside_feed {
  554. padding: 10px 0;
  555. text-align: center;
  556. background: #fff;
  557. }
  558. .aside.aside_feed .tree {
  559. margin: 10px 0 50px;
  560. }
  561. /*=== Aside main page (categories) */
  562. .aside_feed .category .title:not([data-unread="0"])::after {
  563. position: absolute;
  564. right: 0;
  565. margin: 10px 0;
  566. padding: 0 10px;
  567. font-size: 0.9rem;
  568. line-height: 1.5rem;
  569. background: inherit;
  570. }
  571. /*=== Aside main page (feeds) */
  572. .feed.item.empty.active {
  573. background: #e67e22;
  574. }
  575. .feed.item.error.active {
  576. background: #bd362f;
  577. }
  578. .feed.item.empty,
  579. .feed.item.empty > a {
  580. color: #e67e22;
  581. }
  582. .feed.item.error,
  583. .feed.item.error > a {
  584. color: #bd362f;
  585. }
  586. .feed.item.empty.active,
  587. .feed.item.error.active,
  588. .feed.item.empty.active > a,
  589. .feed.item.error.active > a {
  590. color: #fff;
  591. }
  592. .aside_feed .tree-folder-items .dropdown-menu::after {
  593. left: 2px;
  594. }
  595. .aside_feed .tree-folder-items .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  596. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  597. background-color: #fff;
  598. border-radius: 3px;
  599. }
  600. /*=== Configuration pages */
  601. .post {
  602. padding: 10px 50px;
  603. font-size: 0.9em;
  604. }
  605. .post form {
  606. margin: 10px 0;
  607. }
  608. .post.content {
  609. max-width: 550px;
  610. }
  611. /*=== Prompt (centered) */
  612. .prompt {
  613. text-align: center;
  614. }
  615. .prompt label {
  616. text-align: left;
  617. }
  618. .prompt form {
  619. margin: 10px auto 20px auto;
  620. width: 200px;
  621. }
  622. .prompt input {
  623. margin: 5px auto;
  624. width: 100%;
  625. }
  626. .prompt p {
  627. margin: 20px 0;
  628. }
  629. /*=== New article notification */
  630. #new-article {
  631. background: #0084CC;
  632. text-align: center;
  633. font-size: 0.9em;
  634. }
  635. #new-article:hover {
  636. background: #0066CC;
  637. }
  638. #new-article > a {
  639. line-height: 3em;
  640. color: #fff;
  641. font-weight: bold;
  642. }
  643. #new-article > a:hover {
  644. text-decoration: none;
  645. }
  646. /*=== Day indication */
  647. .day {
  648. padding: 0 10px;
  649. font-weight: bold;
  650. line-height: 3em;
  651. background: #fff;
  652. border-top: 1px solid #aaa;
  653. border-bottom: 1px solid #aaa;
  654. }
  655. #new-article + .day {
  656. border-top: none;
  657. }
  658. .day .name {
  659. padding: 0 10px 0 0;
  660. color: #aab;
  661. font-size: 1.8em;
  662. opacity: 0.3;
  663. text-shadow: 0px -1px 0px #666;
  664. font-style: italic;
  665. text-align: right;
  666. }
  667. /*=== Index menu */
  668. .nav_menu {
  669. background: #fafafa;
  670. border-bottom: 1px solid #aaa;
  671. text-align: center;
  672. padding: 5px 0;
  673. }
  674. /*=== Feed articles */
  675. .flux {
  676. border-left: 2px solid #aaa;
  677. background: #fafafa;
  678. }
  679. .flux:hover {
  680. background: #fff;
  681. }
  682. .flux.current {
  683. border-left: 2px solid #0062BE;
  684. }
  685. .flux.not_read {
  686. border-left: 2px solid #FF5300;
  687. background: #FFF3ED;
  688. }
  689. .flux.not_read:not(.current):hover .item.title {
  690. background: #FFF3ED;
  691. }
  692. .flux.favorite {
  693. border-left: 2px solid #FFC300;
  694. background: #FFF6DA;
  695. }
  696. .flux.favorite:not(.current):hover .item.title {
  697. background: #FFF6DA;
  698. }
  699. .flux.current {
  700. background: #fff;
  701. }
  702. .flux_header {
  703. border-top: 1px solid #ddd;
  704. font-size: 0.8rem;
  705. cursor: pointer;
  706. }
  707. .flux_header .title {
  708. font-size: 0.9rem;
  709. }
  710. .flux .website .favicon {
  711. padding: 5px;
  712. }
  713. .flux .date {
  714. color: #666;
  715. font-size: 0.7rem;
  716. }
  717. .flux .bottom {
  718. font-size: 0.8rem;
  719. text-align: center;
  720. }
  721. /*=== Content of feed articles */
  722. .content {
  723. padding: 20px 10px;
  724. }
  725. .content > h1.title > a {
  726. color: #000;
  727. }
  728. .content hr {
  729. margin: 30px 10px;
  730. height: 1px;
  731. background: #ddd;
  732. border: 0;
  733. box-shadow: 0 2px 5px #ccc;
  734. }
  735. .content pre {
  736. margin: 10px auto;
  737. padding: 10px 20px;
  738. overflow: auto;
  739. background: #222;
  740. color: #fff;
  741. font-size: 0.9rem;
  742. border-radius: 3px;
  743. }
  744. .content code {
  745. padding: 2px 5px;
  746. color: #dd1144;
  747. background: #fafafa;
  748. border: 1px solid #eee;
  749. border-radius: 3px;
  750. }
  751. .content pre code {
  752. background: transparent;
  753. color: #fff;
  754. border: none;
  755. }
  756. .content blockquote {
  757. display: block;
  758. margin: 0;
  759. padding: 5px 20px;
  760. border-top: 1px solid #ddd;
  761. border-bottom: 1px solid #ddd;
  762. background: #fafafa;
  763. color: #333;
  764. }
  765. .content blockquote p {
  766. margin: 0;
  767. }
  768. /*=== Notification and actualize notification */
  769. .notification {
  770. padding: 0 0 0 5px;
  771. text-align: center;
  772. border: 1px solid #eeb;
  773. border-radius: 3px;
  774. box-shadow: 0 0 5px #ddd;
  775. font-weight: bold;
  776. font-size: 0.9em;
  777. line-height: 3em;
  778. z-index: 10;
  779. vertical-align: middle;
  780. }
  781. .notification.good {
  782. background: #ffe;
  783. border: 1px solid #eeb;
  784. color: #c95;
  785. }
  786. .notification.bad {
  787. background: #fdd;
  788. border: 1px solid #ecc;
  789. color: #844;
  790. }
  791. .notification a.close {
  792. padding: 0 15px;
  793. line-height: 3em;
  794. }
  795. .notification.good a.close:hover {
  796. background: #eeb;
  797. }
  798. .notification.bad a.close:hover {
  799. background: #ecc;
  800. }
  801. .notification#actualizeProgress {
  802. line-height: 2em;
  803. }
  804. /*=== "Load more" part */
  805. #bigMarkAsRead {
  806. text-align: center;
  807. text-decoration: none;
  808. text-shadow: 0 -1px 0 #aaa;
  809. color: #666;
  810. background: #fafafa;
  811. }
  812. #bigMarkAsRead:hover {
  813. color: #0062be;
  814. background: #fff;
  815. box-shadow: 0 -5px 10px #eee inset;
  816. }
  817. #bigMarkAsRead:hover .bigTick {
  818. text-shadow: 0 0 5px #0062be;
  819. }
  820. /*=== Navigation menu (for articles) */
  821. #nav_entries {
  822. margin: 0;
  823. background: #fff;
  824. border-top: 1px solid #ddd;
  825. text-align: center;
  826. line-height: 3em;
  827. table-layout: fixed;
  828. }
  829. /*=== READER VIEW */
  830. /*================*/
  831. #stream.reader .flux {
  832. padding: 0 0 50px;
  833. border: none;
  834. background: #f0f0f0;
  835. color: #333;
  836. }
  837. #stream.reader .flux .author {
  838. margin: 0 0 10px;
  839. font-size: 90%;
  840. color: #666;
  841. }
  842. /*=== GLOBAL VIEW */
  843. /*================*/
  844. .box.category .box-title .title {
  845. font-weight: normal;
  846. text-decoration: none;
  847. text-align: left;
  848. }
  849. .box.category:not([data-unread="0"]) .box-title {
  850. background: #0084CC;
  851. }
  852. .box.category:not([data-unread="0"]) .box-title:active {
  853. background: #3498db;
  854. }
  855. .box.category:not([data-unread="0"]) .box-title .title {
  856. color: #fff;
  857. font-weight: bold;
  858. }
  859. .box.category .title:not([data-unread="0"])::after {
  860. position: absolute;
  861. top: 5px; right: 10px;
  862. border: 0;
  863. background: none;
  864. color: #fff;
  865. font-weight: bold;
  866. box-shadow: none;
  867. text-shadow: none;
  868. }
  869. .box.category .item.feed {
  870. padding: 2px 10px;
  871. font-size: 0.8rem;
  872. }
  873. /*=== DIVERS */
  874. /*===========*/
  875. .aside.aside_feed .nav-form input,
  876. .aside.aside_feed .nav-form select {
  877. width: 140px;
  878. }
  879. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  880. right: -20px;
  881. }
  882. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  883. right: 33px;
  884. }
  885. /*=== STATISTICS */
  886. /*===============*/
  887. .stat {
  888. margin: 10px 0 20px;
  889. }
  890. .stat th,
  891. .stat td,
  892. .stat tr {
  893. border: none;
  894. }
  895. .stat > table td,
  896. .stat > table th {
  897. border-bottom: 1px solid #ddd;
  898. }
  899. .stat > .horizontal-list {
  900. margin: 0 0 5px;
  901. }
  902. .stat > .horizontal-list .item {
  903. overflow: hidden;
  904. white-space: nowrap;
  905. text-overflow: ellipsis;
  906. }
  907. .stat > .horizontal-list .item:first-child {
  908. width: 270px;
  909. }
  910. /*=== LOGS */
  911. /*=========*/
  912. .loglist {
  913. border: 1px solid #aaa;
  914. border-radius: 5px;
  915. overflow: hidden;
  916. }
  917. .log {
  918. padding: 5px 10px;
  919. background: #fafafa;
  920. color: #333;
  921. font-size: 0.8rem;
  922. }
  923. .log+.log {
  924. border-top: 1px solid #aaa;
  925. }
  926. .log .date {
  927. display: block;
  928. font-weight: bold;
  929. }
  930. .log.error {
  931. background: #fdd;
  932. color: #844;
  933. }
  934. .log.warning {
  935. background: #ffe;
  936. color: #c95;
  937. }
  938. .log.notice {
  939. background: #f4f4f4;
  940. color: #aaa;
  941. }
  942. .log.debug {
  943. background: #333;
  944. color: #eee;
  945. }
  946. /*=== MOBILE */
  947. /*===========*/
  948. @media(max-width: 840px) {
  949. .aside {
  950. box-shadow: 3px 0 3px #aaa;
  951. transition: width 200ms linear;
  952. -moz-transition: width 200ms linear;
  953. -webkit-transition: width 200ms linear;
  954. -o-transition: width 200ms linear;
  955. -ms-transition: width 200ms linear;
  956. }
  957. .aside .toggle_aside,
  958. #panel .close {
  959. display: block;
  960. width: 100%;
  961. height: 50px;
  962. line-height: 50px;
  963. text-align: center;
  964. background: #f6f6f6;
  965. border-bottom: 1px solid #ddd;
  966. }
  967. .aside.aside_feed {
  968. padding: 0;
  969. }
  970. .nav_menu .btn {
  971. margin: 5px 10px;
  972. }
  973. .nav_menu .stick {
  974. margin: 0 10px;
  975. }
  976. .nav_menu .stick .btn {
  977. margin: 5px 0;
  978. }
  979. .nav_menu .search {
  980. display: inline-block;
  981. max-width: 97%;
  982. }
  983. .nav_menu .search input {
  984. max-width: 97%;
  985. width: 90px;
  986. }
  987. .nav_menu .search input:focus {
  988. width: 400px;
  989. }
  990. .day .name {
  991. font-size: 1.1rem;
  992. text-shadow: none;
  993. }
  994. .pagination {
  995. margin: 0 0 3.5em;
  996. }
  997. .notification a.close {
  998. display: block;
  999. left: 0;
  1000. background: transparent;
  1001. }
  1002. .notification a.close:hover {
  1003. opacity: 0.5;
  1004. }
  1005. .notification a.close .icon {
  1006. display: none;
  1007. }
  1008. }