flat.css 17 KB

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