origine.css 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071
  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", 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 {
  345. }
  346. .dropdown-menu > .item > a {
  347. padding: 0 25px;
  348. line-height: 2.5em;
  349. }
  350. .dropdown-menu > .item > span,
  351. .dropdown-menu > .item > .as-link {
  352. padding: 0 22px;
  353. line-height: 2em;
  354. }
  355. .dropdown-menu > .item:hover {
  356. background: #0062BE;
  357. color: #fff;
  358. }
  359. .dropdown-menu > .item[aria-checked="true"] > a::before {
  360. font-weight: bold;
  361. margin: 0 0 0 -14px;
  362. }
  363. .dropdown-menu > .item:hover > a {
  364. color: #fff;
  365. text-decoration: none;
  366. }
  367. .dropdown-menu .input select,
  368. .dropdown-menu .input input {
  369. margin: 0 auto 5px;
  370. padding: 2px 5px;
  371. border-radius: 3px;
  372. }
  373. .separator {
  374. margin: 5px 0;
  375. border-bottom: 1px solid #ddd;
  376. }
  377. /*=== Alerts */
  378. .alert {
  379. margin: 15px auto;
  380. padding: 10px 15px;
  381. background: #f4f4f4;
  382. border: 1px solid #ccc;
  383. border-right: 1px solid #aaa;
  384. border-bottom: 1px solid #aaa;
  385. border-radius: 5px;
  386. color: #aaa;
  387. text-shadow: 0 0 1px #eee;
  388. font-size: 0.9em;
  389. }
  390. .alert-head {
  391. font-size: 1.15em;
  392. }
  393. .alert > a {
  394. color: inherit;
  395. text-decoration: underline;
  396. }
  397. .alert-warn {
  398. background: #ffe;
  399. border: 1px solid #eeb;
  400. color: #c95;
  401. }
  402. .alert-success {
  403. background: #dfd;
  404. border: 1px solid #cec;
  405. color: #484;
  406. }
  407. .alert-error {
  408. background: #fdd;
  409. border: 1px solid #ecc;
  410. color: #844;
  411. }
  412. /*=== Pagination */
  413. .pagination {
  414. background: #fafafa;
  415. text-align: center;
  416. color: #333;
  417. font-size: 0.8em;
  418. }
  419. .content .pagination {
  420. margin: 0;
  421. padding: 0;
  422. }
  423. .pagination .item.pager-current {
  424. font-weight: bold;
  425. font-size: 1.5em;
  426. }
  427. .pagination .item a {
  428. display: block;
  429. color: #333;
  430. font-style: italic;
  431. line-height: 3em;
  432. text-decoration: none;
  433. }
  434. .pagination .item a:hover {
  435. background: #ddd;
  436. }
  437. .pagination:first-child .item {
  438. border-bottom: 1px solid #aaa;
  439. }
  440. .pagination:last-child .item {
  441. border-top: 1px solid #aaa;
  442. }
  443. .pagination .loading,
  444. .pagination a:hover.loading {
  445. background: url("loader.gif") center center no-repeat #fff;
  446. font-size: 0;
  447. }
  448. /*=== Boxes */
  449. .box {
  450. background: #fff;
  451. border-radius: 5px;
  452. box-shadow: 0 0 3px #bbb;
  453. }
  454. .box .box-title {
  455. margin: 0;
  456. padding: 5px 10px;
  457. background: #f6f6f6;
  458. border-bottom: 1px solid #ddd;
  459. border-radius: 5px 5px 0 0;
  460. }
  461. .box .box-content {
  462. min-height: 2.5em;
  463. max-height: 260px;
  464. }
  465. .box .box-content .item {
  466. padding: 0 10px;
  467. font-size: 0.9rem;
  468. line-height: 2.5em;
  469. }
  470. .box .box-content .item .configure {
  471. visibility: hidden;
  472. }
  473. .box .box-content .item:hover .configure {
  474. visibility: visible;
  475. }
  476. /*=== Tree */
  477. .tree {
  478. margin: 10px 0;
  479. }
  480. .tree-folder-title {
  481. position: relative;
  482. padding: 0 10px;
  483. background: #fff;
  484. line-height: 2.5rem;
  485. font-size: 1rem;
  486. }
  487. .tree-folder-title .title {
  488. background: inherit;
  489. color: #444;
  490. }
  491. .tree-folder-title .title:hover {
  492. text-decoration: none;
  493. }
  494. .tree-folder.active .tree-folder-title {
  495. background: #f0f0f0;
  496. font-weight: bold;
  497. }
  498. .tree-folder.active .tree-folder-title .title {
  499. color: #0062BE;
  500. }
  501. .tree-folder-items {
  502. border-top: 1px solid #ccc;
  503. border-bottom: 1px solid #ccc;
  504. background: #f6f6f6;
  505. }
  506. .tree-folder-items > .item {
  507. padding: 0 10px;
  508. line-height: 2.5rem;
  509. font-size: 0.8rem;
  510. }
  511. .tree-folder-items > .item.active {
  512. background: #0062be;
  513. }
  514. .tree-folder-items > .item > a {
  515. text-decoration: none;
  516. }
  517. .tree-folder-items > .item.active > a {
  518. color: #fff;
  519. }
  520. /*=== STRUCTURE */
  521. /*===============*/
  522. /*=== Header */
  523. .header {
  524. height: 85px;
  525. background: #f4f4f4;
  526. }
  527. .header > .item {
  528. padding: 10px;
  529. border-bottom: 1px solid #aaa;
  530. vertical-align: middle;
  531. text-align: center;
  532. }
  533. .header > .item.title{
  534. width: 230px;
  535. }
  536. .header > .item.title h1 {
  537. margin: 0.5em 0;
  538. text-shadow: 1px -1px 0 #ccc;
  539. }
  540. .header > .item.title h1 a {
  541. text-decoration: none;
  542. }
  543. .header > .item.search input {
  544. width: 230px;
  545. }
  546. .header .item.search input:focus {
  547. width: 350px;
  548. }
  549. /*=== Body */
  550. #global {
  551. height: calc(100% - 85px);
  552. }
  553. .aside {
  554. border-right: 1px solid #aaa;
  555. background: #fff;
  556. }
  557. .aside.aside_feed {
  558. padding: 10px 0;
  559. text-align: center;
  560. background: #fff;
  561. }
  562. .aside.aside_feed .tree {
  563. margin: 10px 0 50px;
  564. }
  565. /*=== Aside main page (categories) */
  566. .aside_feed .category .title:not([data-unread="0"])::after {
  567. position: absolute;
  568. right: 0;
  569. margin: 10px 0;
  570. padding: 0 10px;
  571. font-size: 0.9rem;
  572. line-height: 1.5rem;
  573. background: inherit;
  574. }
  575. /*=== Aside main page (feeds) */
  576. .feed.item.empty.active {
  577. background: #e67e22;
  578. }
  579. .feed.item.error.active {
  580. background: #bd362f;
  581. }
  582. .feed.item.empty,
  583. .feed.item.empty > a {
  584. color: #e67e22;
  585. }
  586. .feed.item.error,
  587. .feed.item.error > a {
  588. color: #bd362f;
  589. }
  590. .feed.item.empty.active,
  591. .feed.item.error.active,
  592. .feed.item.empty.active > a,
  593. .feed.item.error.active > a {
  594. color: #fff;
  595. }
  596. .aside_feed .tree-folder-items .dropdown-menu::after {
  597. left: 2px;
  598. }
  599. .aside_feed .tree-folder-items .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  600. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  601. background-color: #fff;
  602. border-radius: 3px;
  603. }
  604. /*=== Configuration pages */
  605. .post {
  606. padding: 10px 50px;
  607. font-size: 0.9em;
  608. }
  609. .post form {
  610. margin: 10px 0;
  611. }
  612. .post.content {
  613. max-width: 550px;
  614. }
  615. /*=== Prompt (centered) */
  616. .prompt {
  617. text-align: center;
  618. }
  619. .prompt label {
  620. text-align: left;
  621. }
  622. .prompt form {
  623. margin: 10px auto 20px auto;
  624. width: 200px;
  625. }
  626. .prompt input {
  627. margin: 5px auto;
  628. width: 100%;
  629. }
  630. .prompt p {
  631. margin: 20px 0;
  632. }
  633. /*=== New article notification */
  634. #new-article {
  635. background: #0084CC;
  636. text-align: center;
  637. font-size: 0.9em;
  638. }
  639. #new-article:hover {
  640. background: #0066CC;
  641. }
  642. #new-article > a {
  643. line-height: 3em;
  644. color: #fff;
  645. font-weight: bold;
  646. }
  647. #new-article > a:hover {
  648. text-decoration: none;
  649. }
  650. /*=== Day indication */
  651. .day {
  652. padding: 0 10px;
  653. font-weight: bold;
  654. line-height: 3em;
  655. background: #fff;
  656. border-top: 1px solid #aaa;
  657. border-bottom: 1px solid #aaa;
  658. }
  659. #new-article + .day {
  660. border-top: none;
  661. }
  662. .day .name {
  663. padding: 0 10px 0 0;
  664. color: #aab;
  665. font-size: 1.8em;
  666. opacity: 0.3;
  667. text-shadow: 0px -1px 0px #666;
  668. font-style: italic;
  669. text-align: right;
  670. }
  671. /*=== Index menu */
  672. .nav_menu {
  673. background: #fafafa;
  674. border-bottom: 1px solid #aaa;
  675. text-align: center;
  676. padding: 5px 0;
  677. }
  678. /*=== Feed articles */
  679. .flux {
  680. border-left: 2px solid #aaa;
  681. background: #fafafa;
  682. }
  683. .flux:hover {
  684. background: #fff;
  685. }
  686. .flux.current {
  687. border-left: 2px solid #0062BE;
  688. }
  689. .flux.not_read {
  690. border-left: 2px solid #FF5300;
  691. background: #FFF3ED;
  692. }
  693. .flux.not_read:not(.current):hover .item.title {
  694. background: #FFF3ED;
  695. }
  696. .flux.favorite {
  697. border-left: 2px solid #FFC300;
  698. background: #FFF6DA;
  699. }
  700. .flux.favorite:not(.current):hover .item.title {
  701. background: #FFF6DA;
  702. }
  703. .flux.current {
  704. background: #fff;
  705. }
  706. .flux_header {
  707. border-top: 1px solid #ddd;
  708. font-size: 0.8rem;
  709. cursor: pointer;
  710. }
  711. .flux_header .title {
  712. font-size: 0.9rem;
  713. }
  714. .flux .website .favicon {
  715. padding: 5px;
  716. }
  717. .flux .date {
  718. color: #666;
  719. font-size: 0.7rem;
  720. }
  721. .flux .bottom {
  722. font-size: 0.8rem;
  723. text-align: center;
  724. }
  725. /*=== Content of feed articles */
  726. .content {
  727. padding: 20px 10px;
  728. }
  729. .content > h1.title > a {
  730. color: #000;
  731. }
  732. .content hr {
  733. margin: 30px 10px;
  734. height: 1px;
  735. background: #ddd;
  736. border: 0;
  737. box-shadow: 0 2px 5px #ccc;
  738. }
  739. .content pre {
  740. margin: 10px auto;
  741. padding: 10px 20px;
  742. overflow: auto;
  743. background: #222;
  744. color: #fff;
  745. font-size: 0.9rem;
  746. border-radius: 3px;
  747. }
  748. .content code {
  749. padding: 2px 5px;
  750. color: #dd1144;
  751. background: #fafafa;
  752. border: 1px solid #eee;
  753. border-radius: 3px;
  754. }
  755. .content pre code {
  756. background: transparent;
  757. color: #fff;
  758. border: none;
  759. }
  760. .content blockquote {
  761. display: block;
  762. margin: 0;
  763. padding: 5px 20px;
  764. border-top: 1px solid #ddd;
  765. border-bottom: 1px solid #ddd;
  766. background: #fafafa;
  767. color: #333;
  768. }
  769. .content blockquote p {
  770. margin: 0;
  771. }
  772. /*=== Notification and actualize notification */
  773. .notification {
  774. padding: 0 0 0 5px;
  775. text-align: center;
  776. border: 1px solid #eeb;
  777. border-radius: 3px;
  778. box-shadow: 0 0 5px #ddd;
  779. font-weight: bold;
  780. font-size: 0.9em;
  781. line-height: 3em;
  782. z-index: 10;
  783. vertical-align: middle;
  784. }
  785. .notification.good {
  786. background: #ffe;
  787. border: 1px solid #eeb;
  788. color: #c95;
  789. }
  790. .notification.bad {
  791. background: #fdd;
  792. border: 1px solid #ecc;
  793. color: #844;
  794. }
  795. .notification a.close {
  796. padding: 0 15px;
  797. line-height: 3em;
  798. }
  799. .notification.good a.close:hover {
  800. background: #eeb;
  801. }
  802. .notification.bad a.close:hover {
  803. background: #ecc;
  804. }
  805. .notification#actualizeProgress {
  806. line-height: 2em;
  807. }
  808. /*=== "Load more" part */
  809. #bigMarkAsRead {
  810. text-align: center;
  811. text-decoration: none;
  812. text-shadow: 0 -1px 0 #aaa;
  813. color: #666;
  814. background: #fafafa;
  815. }
  816. #bigMarkAsRead:hover {
  817. color: #0062be;
  818. background: #fff;
  819. box-shadow: 0 -5px 10px #eee inset;
  820. }
  821. #bigMarkAsRead:hover .bigTick {
  822. text-shadow: 0 0 5px #0062be;
  823. }
  824. /*=== Navigation menu (for articles) */
  825. #nav_entries {
  826. margin: 0;
  827. background: #fff;
  828. border-top: 1px solid #ddd;
  829. text-align: center;
  830. line-height: 3em;
  831. table-layout: fixed;
  832. }
  833. /*=== READER VIEW */
  834. /*================*/
  835. #stream.reader .flux {
  836. padding: 0 0 50px;
  837. border: none;
  838. background: #f0f0f0;
  839. color: #333;
  840. }
  841. #stream.reader .flux .author {
  842. margin: 0 0 10px;
  843. font-size: 90%;
  844. color: #666;
  845. }
  846. /*=== GLOBAL VIEW */
  847. /*================*/
  848. .box.category .box-title .title {
  849. font-weight: normal;
  850. text-decoration: none;
  851. text-align: left;
  852. }
  853. .box.category:not([data-unread="0"]) .box-title {
  854. background: #0084CC;
  855. }
  856. .box.category:not([data-unread="0"]) .box-title:active {
  857. background: #3498db;
  858. }
  859. .box.category:not([data-unread="0"]) .box-title .title {
  860. color: #fff;
  861. font-weight: bold;
  862. }
  863. .box.category .title:not([data-unread="0"])::after {
  864. position: absolute;
  865. top: 5px; right: 10px;
  866. border: 0;
  867. background: none;
  868. color: #fff;
  869. font-weight: bold;
  870. box-shadow: none;
  871. text-shadow: none;
  872. }
  873. .box.category .item.feed {
  874. padding: 2px 10px;
  875. font-size: 0.8rem;
  876. }
  877. /*=== DIVERS */
  878. /*===========*/
  879. .aside.aside_feed .nav-form input,
  880. .aside.aside_feed .nav-form select {
  881. width: 140px;
  882. }
  883. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  884. right: -20px;
  885. }
  886. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  887. right: 33px;
  888. }
  889. /*=== STATISTICS */
  890. /*===============*/
  891. .stat {
  892. margin: 10px 0 20px;
  893. }
  894. .stat th,
  895. .stat td,
  896. .stat tr {
  897. border: none;
  898. }
  899. .stat > table td,
  900. .stat > table th {
  901. border-bottom: 1px solid #ddd;
  902. }
  903. .stat > .horizontal-list {
  904. margin: 0 0 5px;
  905. }
  906. .stat > .horizontal-list .item {
  907. overflow: hidden;
  908. white-space: nowrap;
  909. text-overflow: ellipsis;
  910. }
  911. .stat > .horizontal-list .item:first-child {
  912. width: 270px;
  913. }
  914. /*=== LOGS */
  915. /*=========*/
  916. .logs {
  917. border: 1px solid #aaa;
  918. border-radius: 5px;
  919. overflow: hidden;
  920. }
  921. .log {
  922. padding: 5px 10px;
  923. background: #fafafa;
  924. color: #333;
  925. font-size: 0.8rem;
  926. }
  927. .log+.log {
  928. border-top: 1px solid #aaa;
  929. }
  930. .log .date {
  931. display: block;
  932. font-weight: bold;
  933. }
  934. .log.error {
  935. background: #fdd;
  936. color: #844;
  937. }
  938. .log.warning {
  939. background: #ffe;
  940. color: #c95;
  941. }
  942. .log.notice {
  943. background: #f4f4f4;
  944. color: #aaa;
  945. }
  946. .log.debug {
  947. background: #333;
  948. color: #eee;
  949. }
  950. /*=== MOBILE */
  951. /*===========*/
  952. @media(max-width: 840px) {
  953. .aside {
  954. box-shadow: 3px 0 3px #aaa;
  955. transition: width 200ms linear;
  956. -moz-transition: width 200ms linear;
  957. -webkit-transition: width 200ms linear;
  958. -o-transition: width 200ms linear;
  959. -ms-transition: width 200ms linear;
  960. }
  961. .aside .toggle_aside,
  962. #panel .close {
  963. display: block;
  964. width: 100%;
  965. height: 50px;
  966. line-height: 50px;
  967. text-align: center;
  968. background: #f6f6f6;
  969. border-bottom: 1px solid #ddd;
  970. }
  971. .aside.aside_feed {
  972. padding: 0;
  973. }
  974. .nav_menu .btn {
  975. margin: 5px 10px;
  976. }
  977. .nav_menu .stick {
  978. margin: 0 10px;
  979. }
  980. .nav_menu .stick .btn {
  981. margin: 5px 0;
  982. }
  983. .nav_menu .search {
  984. display: inline-block;
  985. max-width: 97%;
  986. }
  987. .nav_menu .search input {
  988. max-width: 97%;
  989. width: 90px;
  990. }
  991. .nav_menu .search input:focus {
  992. width: 400px;
  993. }
  994. .day .name {
  995. font-size: 1.1rem;
  996. text-shadow: none;
  997. }
  998. .pagination {
  999. margin: 0 0 3.5em;
  1000. }
  1001. .notification a.close {
  1002. display: block;
  1003. left: 0;
  1004. background: transparent;
  1005. }
  1006. .notification a.close:hover {
  1007. opacity: 0.5;
  1008. }
  1009. .notification a.close .icon {
  1010. display: none;
  1011. }
  1012. }