origine.rtl.css 18 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217
  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. box-sizing: border-box;
  605. }
  606. .prompt .btn.btn-important {
  607. padding-right: 1.5rem;
  608. padding-left: 1.5rem;
  609. font-size: 1.1rem;
  610. }
  611. .prompt p {
  612. margin: 20px 0;
  613. }
  614. /*=== New article notification */
  615. #new-article {
  616. background: #0084cc;
  617. text-align: center;
  618. font-size: 0.9em;
  619. }
  620. #new-article:hover {
  621. background: #06c;
  622. }
  623. #new-article > a {
  624. line-height: 3em;
  625. color: #fff;
  626. font-weight: bold;
  627. }
  628. #new-article > a:hover {
  629. text-decoration: none;
  630. }
  631. /*=== Day indication */
  632. .day {
  633. padding: 0 10px;
  634. font-weight: bold;
  635. line-height: 3em;
  636. background: #fff;
  637. border-top: 1px solid #aaa;
  638. border-bottom: 1px solid #aaa;
  639. }
  640. #new-article + .day {
  641. border-top: none;
  642. }
  643. .day .name {
  644. padding: 0 0 0 10px;
  645. color: #aab;
  646. font-size: 1.8em;
  647. opacity: 0.3;
  648. text-shadow: 0px -1px 0px #666;
  649. font-style: italic;
  650. text-align: left;
  651. }
  652. /*=== Index menu */
  653. .nav_menu {
  654. padding: 5px 0;
  655. background: #fafafa;
  656. border-bottom: 1px solid #aaa;
  657. text-align: center;
  658. }
  659. /*=== Feed articles */
  660. .flux {
  661. background: #fafafa;
  662. border-right: 2px solid #aaa;
  663. }
  664. .flux:hover {
  665. background: #fff;
  666. }
  667. .flux.current {
  668. background: #fff;
  669. border-right: 2px solid #0062be;
  670. }
  671. .flux.not_read {
  672. border-right: 2px solid #ff5300;
  673. }
  674. .flux.not_read:not(.current) {
  675. background: #fff3ed;
  676. }
  677. .flux.not_read:not(.current):hover .item.title {
  678. background: inherit;
  679. }
  680. .flux.favorite {
  681. border-right: 2px solid #ffc300;
  682. }
  683. .flux.favorite:not(.current) {
  684. background: #fff6da;
  685. }
  686. .flux.favorite:not(.current):hover .item.title {
  687. background: #fff6da;
  688. }
  689. .flux_header {
  690. font-size: 0.8rem;
  691. border-top: 1px solid #ddd;
  692. cursor: pointer;
  693. }
  694. .flux_header .title {
  695. font-size: 0.9rem;
  696. }
  697. .flux .website .favicon {
  698. padding: 5px;
  699. }
  700. .flux .item.date {
  701. color: #666;
  702. font-size: 0.7rem;
  703. }
  704. .flux .bottom {
  705. font-size: 0.8rem;
  706. text-align: center;
  707. }
  708. /*=== Content of feed articles */
  709. .content {
  710. padding: 20px 10px;
  711. }
  712. .content > h1.title > a {
  713. color: #000;
  714. }
  715. .content hr {
  716. margin: 30px 10px;
  717. background: #ddd;
  718. height: 1px;
  719. border: 0;
  720. box-shadow: 0 2px 5px #ccc;
  721. }
  722. .content pre {
  723. margin: 10px auto;
  724. padding: 10px 20px;
  725. overflow: auto;
  726. background: #222;
  727. color: #fff;
  728. font-size: 0.9rem;
  729. border-radius: 3px;
  730. }
  731. .content code {
  732. padding: 2px 5px;
  733. background: #fafafa;
  734. color: #d14;
  735. border: 1px solid #eee;
  736. border-radius: 3px;
  737. }
  738. .content pre code {
  739. background: transparent;
  740. color: #fff;
  741. border: none;
  742. }
  743. .content blockquote {
  744. margin: 0;
  745. padding: 5px 20px;
  746. background: #fafafa;
  747. display: block;
  748. color: #333;
  749. border-top: 1px solid #ddd;
  750. border-bottom: 1px solid #ddd;
  751. }
  752. .content blockquote p {
  753. margin: 0;
  754. }
  755. /*=== Notification and actualize notification */
  756. .notification {
  757. padding: 0 5px 0 0;
  758. font-size: 0.9em;
  759. border: 1px solid #eeb;
  760. border-radius: 3px;
  761. box-shadow: 0 0 5px #ddd;
  762. text-align: center;
  763. font-weight: bold;
  764. line-height: 3em;
  765. z-index: 10;
  766. vertical-align: middle;
  767. }
  768. .notification.good {
  769. background: #ffe;
  770. color: #c95;
  771. border: 1px solid #eeb;
  772. }
  773. .notification.bad {
  774. background: #fdd;
  775. color: #844;
  776. border: 1px solid #ecc;
  777. }
  778. .notification a.close {
  779. padding: 0 15px;
  780. line-height: 3em;
  781. }
  782. .notification.good a.close:hover {
  783. background: #eeb;
  784. }
  785. .notification.bad a.close:hover {
  786. background: #ecc;
  787. }
  788. .notification#actualizeProgress {
  789. line-height: 2em;
  790. }
  791. /*=== "Load more" part */
  792. #bigMarkAsRead {
  793. background: #fafafa;
  794. color: #666;
  795. text-align: center;
  796. text-decoration: none;
  797. text-shadow: 0 -1px 0 #aaa;
  798. }
  799. #bigMarkAsRead:hover {
  800. background: #fff;
  801. color: #0062be;
  802. box-shadow: 0 -5px 10px #eee inset;
  803. }
  804. #bigMarkAsRead:hover .bigTick {
  805. text-shadow: 0 0 5px #0062be;
  806. }
  807. /*=== Navigation menu (for articles) */
  808. #nav_entries {
  809. margin: 0;
  810. background: #fff;
  811. border-top: 1px solid #ddd;
  812. text-align: center;
  813. line-height: 3em;
  814. table-layout: fixed;
  815. }
  816. /*=== READER VIEW */
  817. /*================*/
  818. #stream.reader .flux {
  819. padding: 0 0 50px;
  820. background: #f0f0f0;
  821. color: #333;
  822. border: none;
  823. }
  824. #stream.reader .flux .author {
  825. margin: 0 0 10px;
  826. color: #666;
  827. font-size: 90%;
  828. }
  829. /*=== GLOBAL VIEW */
  830. /*================*/
  831. .box.category .box-title .title {
  832. font-weight: normal;
  833. text-decoration: none;
  834. text-align: right;
  835. }
  836. .box.category:not([data-unread="0"]) .box-title {
  837. background: #0084cc;
  838. }
  839. .box.category:not([data-unread="0"]) .box-title:active {
  840. background: #3498db;
  841. }
  842. .box.category:not([data-unread="0"]) .box-title .title {
  843. color: #fff;
  844. font-weight: bold;
  845. }
  846. .box.category .title:not([data-unread="0"])::after {
  847. background: none;
  848. color: #fff;
  849. border: 0;
  850. box-shadow: none;
  851. position: absolute;
  852. top: 5px; left: 10px;
  853. font-weight: bold;
  854. text-shadow: none;
  855. }
  856. .box.category .item.feed {
  857. padding: 2px 10px;
  858. font-size: 0.8rem;
  859. }
  860. /*=== DIVERS */
  861. /*===========*/
  862. .aside.aside_feed .nav-form input,
  863. .aside.aside_feed .nav-form select {
  864. width: 140px;
  865. }
  866. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  867. left: -20px;
  868. }
  869. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  870. left: 33px;
  871. }
  872. /*=== STATISTICS */
  873. /*===============*/
  874. .stat {
  875. margin: 10px 0 20px;
  876. }
  877. .stat th,
  878. .stat td,
  879. .stat tr {
  880. border: none;
  881. }
  882. .stat > table td,
  883. .stat > table th {
  884. border-bottom: 1px solid #ddd;
  885. }
  886. .stat > .horizontal-list {
  887. margin: 0 0 5px;
  888. }
  889. .stat > .horizontal-list .item {
  890. overflow: hidden;
  891. white-space: nowrap;
  892. text-overflow: ellipsis;
  893. }
  894. .stat > .horizontal-list .item:first-child {
  895. width: 270px;
  896. }
  897. /*=== LOGS */
  898. /*=========*/
  899. .loglist {
  900. border: 1px solid #aaa;
  901. border-radius: 5px;
  902. overflow: hidden;
  903. }
  904. .log {
  905. padding: 5px 10px;
  906. background: #fafafa;
  907. color: #333;
  908. font-size: 0.8rem;
  909. }
  910. .log+.log {
  911. border-top: 1px solid #aaa;
  912. }
  913. .log .date {
  914. display: block;
  915. font-weight: bold;
  916. }
  917. .log.error {
  918. background: #fdd;
  919. color: #844;
  920. }
  921. .log.warning {
  922. background: #ffe;
  923. color: #c95;
  924. }
  925. .log.notice {
  926. background: #f4f4f4;
  927. color: #aaa;
  928. }
  929. .log.debug {
  930. background: #333;
  931. color: #eee;
  932. }
  933. /*=== MOBILE */
  934. /*===========*/
  935. @media (max-width: 840px) {
  936. .form-group .group-name {
  937. padding-bottom: 0;
  938. text-align: right;
  939. }
  940. .box .box-title .configure,
  941. .box .box-content .item .configure {
  942. visibility: visible;
  943. }
  944. .aside {
  945. transition: width 200ms linear;
  946. }
  947. .aside:target {
  948. box-shadow: -3px 0 3px #aaa;
  949. }
  950. .aside .toggle_aside,
  951. #panel .close {
  952. background: #f6f6f6;
  953. display: block;
  954. width: 100%;
  955. height: 50px;
  956. border-bottom: 1px solid #ddd;
  957. line-height: 50px;
  958. text-align: center;
  959. }
  960. .aside.aside_feed {
  961. padding: 0;
  962. }
  963. .post {
  964. padding-right: 15px;
  965. padding-left: 15px;
  966. }
  967. .nav_menu .btn {
  968. margin: 5px 10px;
  969. }
  970. .nav_menu .stick {
  971. margin: 0 10px;
  972. }
  973. .nav_menu .stick .btn {
  974. margin: 5px 0;
  975. }
  976. .nav_menu .search {
  977. display: inline-block;
  978. max-width: 97%;
  979. }
  980. .nav_menu .search input {
  981. max-width: 97%;
  982. width: 90px;
  983. }
  984. .nav_menu .search input:focus {
  985. width: 400px;
  986. }
  987. .day .name {
  988. font-size: 1.1rem;
  989. text-shadow: none;
  990. }
  991. .pagination {
  992. margin: 0 0 3.5em;
  993. }
  994. .notification a.close {
  995. background: transparent;
  996. display: block;
  997. right: 0;
  998. }
  999. .notification a.close:hover {
  1000. opacity: 0.5;
  1001. }
  1002. .notification a.close .icon {
  1003. display: none;
  1004. }
  1005. }