BlueLagoon.css 23 KB

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