BlueLagoon.css 23 KB

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