origine.css 19 KB

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