BlueLagoon.css 23 KB

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