origine.css 19 KB

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