flat.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029
  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. }
  462. .tree-folder-title .title {
  463. background: inherit;
  464. color: #fff;
  465. }
  466. .tree-folder-title .title:hover {
  467. text-decoration: none;
  468. }
  469. .tree-folder.active .tree-folder-title {
  470. background: #2980b9;
  471. font-weight: bold;
  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. }
  572. /*=== Configuration pages */
  573. .post {
  574. padding: 10px 50px;
  575. font-size: 0.9em;
  576. }
  577. .post form {
  578. margin: 10px 0;
  579. }
  580. .post.content {
  581. max-width: 550px;
  582. }
  583. /*=== Prompt (centered) */
  584. .prompt {
  585. text-align: center;
  586. }
  587. .prompt label {
  588. text-align: left;
  589. }
  590. .prompt form {
  591. margin: 10px auto 20px auto;
  592. width: 200px;
  593. }
  594. .prompt input {
  595. margin: 5px auto;
  596. width: 100%;
  597. }
  598. .prompt p {
  599. margin: 20px 0;
  600. }
  601. /*=== New article notification */
  602. #new-article {
  603. text-align: center;
  604. font-size: 0.9em;
  605. background: #3498db;
  606. }
  607. #new-article:hover {
  608. background: #2980b9;
  609. }
  610. #new-article > a {
  611. line-height: 3em;
  612. font-weight: bold;
  613. color: #fff;
  614. }
  615. #new-article > a:hover {
  616. text-decoration: none;
  617. }
  618. /*=== Day indication */
  619. .day {
  620. padding: 0 10px;
  621. font-weight: bold;
  622. line-height: 3em;
  623. border-left: 2px solid #ecf0f1;
  624. }
  625. .day .name {
  626. padding: 0 10px 0 0;
  627. font-size: 1.8em;
  628. opacity: 0.3;
  629. font-style: italic;
  630. text-align: right;
  631. color: #aab;
  632. }
  633. /*=== Index menu */
  634. .nav_menu {
  635. text-align: center;
  636. padding: 5px 0;
  637. }
  638. #dropdown-query ~ .dropdown-menu .dropdown-header .icon {
  639. vertical-align: middle;
  640. background-color: #95a5a6;
  641. border-radius: 3px;
  642. }
  643. /*=== Feed articles */
  644. .flux {
  645. border-left: 2px solid #ecf0f1;
  646. }
  647. .flux:hover {
  648. background: #fff;
  649. }
  650. .flux.current {
  651. border-left-color: #3498db;
  652. }
  653. .flux.not_read {
  654. background: #FFF3ED;
  655. border-left-color: #FF5300;
  656. }
  657. .flux.not_read:not(.current):hover .item.title {
  658. background: #FFF3ED;
  659. }
  660. .flux.favorite {
  661. background: #FFF6DA;
  662. border-left-color: #FFC300;
  663. }
  664. .flux.favorite:not(.current):hover .item.title {
  665. background: #FFF6DA;
  666. }
  667. .flux.current {
  668. background: #fff;
  669. }
  670. .flux_header {
  671. font-size: 0.8rem;
  672. cursor: pointer;
  673. border-top: 1px solid #ecf0f1;
  674. }
  675. .flux_header .title {
  676. font-size: 0.9rem;
  677. }
  678. .flux .website .favicon {
  679. padding: 5px;
  680. }
  681. .flux .date {
  682. font-size: 0.7rem;
  683. color: #666;
  684. }
  685. .flux .bottom {
  686. font-size: 0.8rem;
  687. text-align: center;
  688. }
  689. /*=== Content of feed articles */
  690. .content {
  691. padding: 20px 10px;
  692. }
  693. .content > h1.title > a {
  694. color: #000;
  695. }
  696. .content hr {
  697. margin: 30px 10px;
  698. height: 1px;
  699. background: #ddd;
  700. border: 0;
  701. box-shadow: 0 2px 5px #ccc;
  702. }
  703. .content pre {
  704. margin: 10px auto;
  705. padding: 10px 20px;
  706. overflow: auto;
  707. background: #222;
  708. color: #fff;
  709. font-size: 0.9rem;
  710. border-radius: 3px;
  711. }
  712. .content code {
  713. padding: 2px 5px;
  714. color: #dd1144;
  715. background: #fafafa;
  716. border: 1px solid #eee;
  717. border-radius: 3px;
  718. }
  719. .content pre code {
  720. background: transparent;
  721. color: #fff;
  722. border: none;
  723. }
  724. .content blockquote {
  725. display: block;
  726. margin: 0;
  727. padding: 5px 20px;
  728. border-top: 1px solid #ddd;
  729. border-bottom: 1px solid #ddd;
  730. background: #fafafa;
  731. color: #333;
  732. }
  733. .content blockquote p {
  734. margin: 0;
  735. }
  736. /*=== Notification and actualize notification */
  737. .notification {
  738. padding: 0 0 0 5px;
  739. text-align: center;
  740. font-weight: bold;
  741. font-size: 0.9em;
  742. line-height: 3em;
  743. z-index: 10;
  744. vertical-align: middle;
  745. background: #ddd;
  746. color: #666;
  747. border-radius: 3px;
  748. border: none;
  749. }
  750. .notification.good {
  751. background: #1abc9c;
  752. color: #fff;
  753. }
  754. .notification.bad {
  755. background: #e74c3c;
  756. color: #fff;
  757. }
  758. .notification a.close {
  759. padding: 0 15px;
  760. line-height: 3em;
  761. border-radius: 0 3px 3px 0;
  762. }
  763. .notification.good a.close:hover {
  764. background: #16a085;
  765. }
  766. .notification.bad a.close:hover {
  767. background: #c0392b;
  768. }
  769. .notification#actualizeProgress {
  770. line-height: 2em;
  771. }
  772. /*=== "Load more" part */
  773. #bigMarkAsRead {
  774. text-align: center;
  775. text-decoration: none;
  776. background: #ecf0f1;
  777. }
  778. #bigMarkAsRead:hover {
  779. background: #34495e;
  780. color: #fff;
  781. }
  782. /*=== Navigation menu (for articles) */
  783. #nav_entries {
  784. margin: 0;
  785. text-align: center;
  786. line-height: 3em;
  787. table-layout: fixed;
  788. background: #34495e;
  789. }
  790. /*=== READER VIEW */
  791. /*================*/
  792. #stream.reader .flux {
  793. padding: 0 0 50px;
  794. background: #ecf0f1;
  795. color: #34495e;
  796. border: none;
  797. }
  798. #stream.reader .flux .author {
  799. margin: 0 0 10px;
  800. font-size: 90%;
  801. color: #999;
  802. }
  803. /*=== GLOBAL VIEW */
  804. /*================*/
  805. .box.category .box-title .title {
  806. font-weight: normal;
  807. text-decoration: none;
  808. text-align: left;
  809. }
  810. .box.category:not([data-unread="0"]) .box-title {
  811. background: #3498db;
  812. }
  813. .box.category:not([data-unread="0"]) .box-title:active {
  814. background: #2980b9;
  815. }
  816. .box.category:not([data-unread="0"]) .box-title .title {
  817. font-weight: bold;
  818. color: #fff;
  819. }
  820. .box.category .title:not([data-unread="0"]):after {
  821. position: absolute;
  822. top: 5px; right: 10px;
  823. border: 0;
  824. background: none;
  825. font-weight: bold;
  826. box-shadow: none;
  827. text-shadow: none;
  828. }
  829. .box.category .item.feed {
  830. padding: 2px 10px;
  831. font-size: 0.8rem;
  832. }
  833. /*=== DIVERS */
  834. /*===========*/
  835. .aside.aside_feed .nav-form input,
  836. .aside.aside_feed .nav-form select {
  837. width: 140px;
  838. }
  839. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  840. right: -20px;
  841. }
  842. .aside.aside_feed .nav-form .dropdown .dropdown-menu:after {
  843. right: 33px;
  844. }
  845. /*=== STATISTICS */
  846. /*===============*/
  847. .stat {
  848. margin: 10px 0 20px;
  849. }
  850. .stat th,
  851. .stat td,
  852. .stat tr {
  853. border: none;
  854. }
  855. .stat > table td,
  856. .stat > table th {
  857. border-bottom: 1px solid #ddd;
  858. }
  859. .stat > .horizontal-list {
  860. margin: 0 0 5px;
  861. }
  862. .stat > .horizontal-list .item {
  863. overflow: hidden;
  864. white-space: nowrap;
  865. text-overflow: ellipsis;
  866. }
  867. .stat > .horizontal-list .item:first-child {
  868. width: 270px;
  869. }
  870. /*=== LOGS */
  871. /*=========*/
  872. .logs {
  873. overflow: hidden;
  874. border: 1px solid #aaa;
  875. }
  876. .log {
  877. margin: 10px 0;
  878. padding: 5px 2%;
  879. overflow: auto;
  880. font-size: 0.8rem;
  881. background: #fafafa;
  882. color: #666;
  883. }
  884. .log > .date {
  885. margin: 0 10px 0 0;
  886. padding: 5px 10px;
  887. border-radius: 20px;
  888. }
  889. .log.error > .date {
  890. background: #e74c3c;
  891. color: #fff;
  892. }
  893. .log.warning > .date {
  894. background: #f39c12;
  895. }
  896. .log.notice > .date {
  897. background: #ecf0f1;
  898. }
  899. .log.debug > .date {
  900. background: #111;
  901. color: #eee;
  902. }
  903. /*=== MOBILE */
  904. /*===========*/
  905. @media(max-width: 840px) {
  906. .aside {
  907. transition: width 200ms linear;
  908. -moz-transition: width 200ms linear;
  909. -webkit-transition: width 200ms linear;
  910. -o-transition: width 200ms linear;
  911. -ms-transition: width 200ms linear;
  912. }
  913. .aside .toggle_aside,
  914. #panel .close {
  915. display: block;
  916. width: 100%;
  917. height: 50px;
  918. line-height: 50px;
  919. text-align: center;
  920. background: #2c3e50;
  921. }
  922. .aside.aside_feed {
  923. padding: 0;
  924. }
  925. .aside.aside_feed .tree {
  926. position: static;
  927. }
  928. .nav_menu .btn {
  929. margin: 5px 10px;
  930. }
  931. .nav_menu .stick {
  932. margin: 0 10px;
  933. }
  934. .nav_menu .stick .btn {
  935. margin: 5px 0;
  936. }
  937. .nav_menu .search {
  938. display: inline-block;
  939. max-width: 97%;
  940. }
  941. .nav_menu .search input {
  942. max-width: 97%;
  943. width: 90px;
  944. }
  945. .nav_menu .search input:focus {
  946. width: 400px;
  947. }
  948. .day .name {
  949. font-size: 1.1rem;
  950. }
  951. .pagination {
  952. margin: 0 0 3.5em;
  953. }
  954. .notification {
  955. border-radius: 0;
  956. }
  957. .notification a.close {
  958. display: block;
  959. left: 0;
  960. background: transparent;
  961. }
  962. .notification a.close:hover {
  963. opacity: 0.5;
  964. }
  965. .notification a.close .icon {
  966. display: none;
  967. }
  968. }