origine.css 19 KB

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