BlueLagoon.css 23 KB

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