BlueLagoon.css 23 KB

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