origine.css 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026
  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.empty.active {
  519. background: #e67e22;
  520. }
  521. .categories .feeds .item.error.active {
  522. background: #BD362F;
  523. }
  524. .categories .feeds .item.empty .feed {
  525. color: #e67e22;
  526. }
  527. .categories .feeds .item.error .feed {
  528. color: #BD362F;
  529. }
  530. .categories .feeds .item.active .feed,
  531. .categories .feeds .item.empty.active .feed,
  532. .categories .feeds .item.error.active .feed {
  533. color: #fff;
  534. }
  535. .categories .feeds .item .feed {
  536. margin: 0;
  537. width: 165px;
  538. line-height: 3em;
  539. font-size: 0.8em;
  540. text-align: left;
  541. text-decoration: none;
  542. }
  543. .categories .feeds .feed:not([data-unread="0"]) {
  544. font-weight: bold;
  545. }
  546. .categories .feeds .dropdown-menu:after {
  547. left: 2px;
  548. }
  549. .categories .feeds .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  550. .categories .feeds .item:hover .dropdown-toggle > .icon,
  551. .categories .feeds .item.active .dropdown-toggle > .icon {
  552. background-color: #fff;
  553. border-radius: 3px;
  554. vertical-align: middle;
  555. }
  556. /*=== Configuration pages */
  557. .post {
  558. padding: 10px 50px;
  559. font-size: 0.9em;
  560. }
  561. .post form {
  562. margin: 10px 0;
  563. }
  564. .post.content {
  565. max-width: 550px;
  566. }
  567. /*=== Prompt (centered) */
  568. .prompt {
  569. text-align: center;
  570. }
  571. .prompt label {
  572. text-align: left;
  573. }
  574. .prompt form {
  575. margin: 10px auto 20px auto;
  576. width: 200px;
  577. }
  578. .prompt input {
  579. margin: 5px auto;
  580. width: 100%;
  581. }
  582. .prompt p {
  583. margin: 20px 0;
  584. }
  585. /*=== New article notification */
  586. #new-article {
  587. background: #0084CC;
  588. text-align: center;
  589. font-size: 0.9em;
  590. }
  591. #new-article:hover {
  592. background: #0066CC;
  593. }
  594. #new-article > a {
  595. line-height: 3em;
  596. color: #fff;
  597. font-weight: bold;
  598. }
  599. #new-article > a:hover {
  600. text-decoration: none;
  601. }
  602. /*=== Day indication */
  603. .day {
  604. padding: 0 10px;
  605. font-weight: bold;
  606. line-height: 3em;
  607. background: #fff;
  608. border-top: 1px solid #aaa;
  609. border-bottom: 1px solid #aaa;
  610. }
  611. #new-article + .day {
  612. border-top: none;
  613. }
  614. .day .name {
  615. padding: 0 10px 0 0;
  616. color: #aab;
  617. font-size: 1.8em;
  618. opacity: 0.3;
  619. text-shadow: 0px -1px 0px #666;
  620. font-style: italic;
  621. text-align: right;
  622. }
  623. /*=== Index menu */
  624. .nav_menu {
  625. background: #fafafa;
  626. border-bottom: 1px solid #aaa;
  627. text-align: center;
  628. padding: 5px 0;
  629. }
  630. /*=== Feed articles */
  631. .flux {
  632. border-left: 2px solid #aaa;
  633. background: #fafafa;
  634. }
  635. .flux:hover {
  636. background: #fff;
  637. }
  638. .flux.current {
  639. border-left: 2px solid #0062BE;
  640. }
  641. .flux.not_read {
  642. border-left: 2px solid #FF5300;
  643. background: #FFF3ED;
  644. }
  645. .flux.not_read:not(.current):hover .item.title {
  646. background: #FFF3ED;
  647. }
  648. .flux.favorite {
  649. border-left: 2px solid #FFC300;
  650. background: #FFF6DA;
  651. }
  652. .flux.favorite:not(.current):hover .item.title {
  653. background: #FFF6DA;
  654. }
  655. .flux.current {
  656. background: #fff;
  657. }
  658. .flux_header {
  659. border-top: 1px solid #ddd;
  660. font-size: 0.8rem;
  661. cursor: pointer;
  662. }
  663. .flux_header .title {
  664. font-size: 0.9rem;
  665. }
  666. .flux .website .favicon {
  667. padding: 5px;
  668. }
  669. .flux .date {
  670. color: #666;
  671. font-size: 0.7rem;
  672. }
  673. .flux .bottom {
  674. font-size: 0.8rem;
  675. text-align: center;
  676. }
  677. /*=== Content of feed articles */
  678. .content {
  679. padding: 20px 10px;
  680. }
  681. .content > h1.title > a {
  682. color: #000;
  683. }
  684. .content hr {
  685. margin: 30px 10px;
  686. height: 1px;
  687. background: #ddd;
  688. border: 0;
  689. box-shadow: 0 2px 5px #ccc;
  690. }
  691. .content pre {
  692. margin: 10px auto;
  693. padding: 10px 20px;
  694. overflow: auto;
  695. background: #222;
  696. color: #fff;
  697. font-size: 0.9rem;
  698. border-radius: 3px;
  699. }
  700. .content code {
  701. padding: 2px 5px;
  702. color: #dd1144;
  703. background: #fafafa;
  704. border: 1px solid #eee;
  705. border-radius: 3px;
  706. }
  707. .content pre code {
  708. background: transparent;
  709. color: #fff;
  710. border: none;
  711. }
  712. .content blockquote {
  713. display: block;
  714. margin: 0;
  715. padding: 5px 20px;
  716. border-top: 1px solid #ddd;
  717. border-bottom: 1px solid #ddd;
  718. background: #fafafa;
  719. color: #333;
  720. }
  721. .content blockquote p {
  722. margin: 0;
  723. }
  724. /*=== Notification and actualize notification */
  725. .notification {
  726. padding: 0 0 0 5px;
  727. text-align: center;
  728. border: 1px solid #eeb;
  729. border-radius: 3px;
  730. box-shadow: 0 0 5px #ddd;
  731. font-weight: bold;
  732. font-size: 0.9em;
  733. line-height: 3em;
  734. z-index: 10;
  735. vertical-align: middle;
  736. }
  737. .notification.good {
  738. background: #ffe;
  739. border: 1px solid #eeb;
  740. color: #c95;
  741. }
  742. .notification.bad {
  743. background: #fdd;
  744. border: 1px solid #ecc;
  745. color: #844;
  746. }
  747. .notification a.close {
  748. padding: 0 15px;
  749. line-height: 3em;
  750. }
  751. .notification.good a.close:hover {
  752. background: #eeb;
  753. }
  754. .notification.bad a.close:hover {
  755. background: #ecc;
  756. }
  757. .notification#actualizeProgress {
  758. line-height: 2em;
  759. }
  760. /*=== "Load more" part */
  761. #bigMarkAsRead {
  762. text-align: center;
  763. text-decoration: none;
  764. text-shadow: 0 -1px 0 #aaa;
  765. color: #666;
  766. background: #fafafa;
  767. }
  768. #bigMarkAsRead:hover {
  769. color: #000;
  770. background: #ccc;
  771. background: radial-gradient(circle at 50% -25% , #ccc 0%, #fafafa 50%);
  772. background: -moz-radial-gradient(circle at 50% -25% , #ccc 0%, #fafafa 50%);
  773. background: -webkit-radial-gradient(circle at 50% -25% , #ccc 0%, #fafafa 50%);
  774. background: -o-radial-gradient(circle at 50% -25% , #ccc 0%, #fafafa 50%);
  775. background: -ms-radial-gradient(circle at 50% -25% , #ccc 0%, #fafafa 50%);
  776. }
  777. #bigMarkAsRead:hover .bigTick {
  778. text-shadow: 0 0 10px #666;
  779. }
  780. /*=== Navigation menu (for articles) */
  781. #nav_entries {
  782. margin: 0;
  783. background: #fff;
  784. border-top: 1px solid #ddd;
  785. text-align: center;
  786. line-height: 3em;
  787. table-layout: fixed;
  788. }
  789. /*=== READER VIEW */
  790. /*================*/
  791. #stream.reader .flux {
  792. padding: 0 0 50px;
  793. border: none;
  794. background: #f0f0f0;
  795. color: #333;
  796. }
  797. #stream.reader .flux .author {
  798. margin: 0 0 10px;
  799. font-size: 90%;
  800. color: #666;
  801. }
  802. /*=== GLOBAL VIEW */
  803. /*================*/
  804. #stream.global .box-category {
  805. background: #fff;
  806. border-radius: 5px;
  807. text-align: left;
  808. box-shadow: 0 0 3px #bbb;
  809. }
  810. #stream.global .category {
  811. margin: 0;
  812. }
  813. #stream.global .btn {
  814. width: auto;
  815. height: 2em;
  816. margin: 0;
  817. padding: 0 10px;
  818. background: #f6f6f6;
  819. border: none;
  820. border-bottom: 1px solid #ddd;
  821. border-radius: 5px 5px 0 0;
  822. line-height: 2em;
  823. font-size: 1.2rem;
  824. }
  825. #stream.global .btn:not([data-unread="0"]) {
  826. background: #0084CC;
  827. color: #fff;
  828. font-weight: bold;
  829. text-shadow: none;
  830. }
  831. #stream.global .btn:first-child:not([data-unread="0"]):after {
  832. top: 0; right: 5px;
  833. border: 0;
  834. background: none;
  835. color: #fff;
  836. font-weight: bold;
  837. box-shadow: none;
  838. text-shadow: none;
  839. }
  840. #stream.global .box-category .feeds {
  841. max-height: 250px;
  842. }
  843. #stream.global .box-category .feeds .item {
  844. padding: 2px 10px;
  845. font-size: 0.9rem;
  846. }
  847. /*=== DIVERS */
  848. /*===========*/
  849. .aside.aside_feed .nav-form input,
  850. .aside.aside_feed .nav-form select {
  851. width: 140px;
  852. }
  853. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  854. right: -20px;
  855. }
  856. .aside.aside_feed .nav-form .dropdown .dropdown-menu:after {
  857. right: 33px;
  858. }
  859. /*=== STATISTICS */
  860. /*===============*/
  861. .stat {
  862. margin: 10px 0 20px;
  863. }
  864. .stat th,
  865. .stat td,
  866. .stat tr {
  867. border: none;
  868. }
  869. .stat > table td,
  870. .stat > table th {
  871. border-bottom: 1px solid #ddd;
  872. text-align: center;
  873. }
  874. /*=== LOGS */
  875. /*=========*/
  876. .logs {
  877. border: 1px solid #aaa;
  878. border-radius: 5px;
  879. overflow: hidden;
  880. }
  881. .log {
  882. padding: 5px 10px;
  883. background: #fafafa;
  884. color: #333;
  885. font-size: 0.8rem;
  886. }
  887. .log+.log {
  888. border-top: 1px solid #aaa;
  889. }
  890. .log .date {
  891. display: block;
  892. font-weight: bold;
  893. }
  894. .log.error {
  895. background: #fdd;
  896. color: #844;
  897. }
  898. .log.warning {
  899. background: #ffe;
  900. color: #c95;
  901. }
  902. .log.notice {
  903. background: #f4f4f4;
  904. color: #aaa;
  905. }
  906. .log.debug {
  907. background: #333;
  908. color: #eee;
  909. }
  910. /*=== MOBILE */
  911. /*===========*/
  912. @media(max-width: 840px) {
  913. .aside {
  914. box-shadow: 3px 0 3px #aaa;
  915. transition: width 200ms linear;
  916. -moz-transition: width 200ms linear;
  917. -webkit-transition: width 200ms linear;
  918. -o-transition: width 200ms linear;
  919. -ms-transition: width 200ms linear;
  920. }
  921. .aside .toggle_aside,
  922. #panel .close {
  923. position: absolute;
  924. display: block;
  925. top: 0; right: 0;
  926. width: 30px;
  927. height: 30px;
  928. line-height: 30px;
  929. text-align: center;
  930. background: #f6f6f6;
  931. border-left: 1px solid #ddd;
  932. border-bottom: 1px solid #ddd;
  933. border-radius: 0 0 0 5px;
  934. }
  935. .nav_menu .btn {
  936. margin: 5px 10px;
  937. }
  938. .nav_menu .stick {
  939. margin: 0 10px;
  940. }
  941. .nav_menu .stick .btn {
  942. margin: 5px 0;
  943. }
  944. .nav_menu .search {
  945. display: inline-block;
  946. max-width: 97%;
  947. }
  948. .nav_menu .search input {
  949. max-width: 97%;
  950. width: 90px;
  951. }
  952. .nav_menu .search input:focus {
  953. width: 400px;
  954. }
  955. .day .name {
  956. font-size: 1.1rem;
  957. text-shadow: none;
  958. }
  959. .pagination {
  960. margin: 0 0 3.5em;
  961. }
  962. .notification a.close {
  963. display: block;
  964. left: 0;
  965. background: transparent;
  966. }
  967. .notification a.close:hover {
  968. opacity: 0.5;
  969. }
  970. .notification a.close .icon {
  971. display: none;
  972. }
  973. }