BlueLagoon.css 23 KB

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