origine.css 19 KB

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