BlueLagoon.css 23 KB

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