origine.css 19 KB

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