origine-compact.rtl.css 20 KB

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