origine.rtl.css 18 KB

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