_configuration.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*=== Configuration pages */
  2. .post {
  3. font-size: 1rem;
  4. h1, h2 {
  5. color: var(--main-font-color);
  6. font-size: 2rem;
  7. margin-top: 1.75rem;
  8. font-weight: 300;
  9. line-height: 1.2em;
  10. }
  11. h2 {
  12. font-size: 1.5rem;
  13. }
  14. a[href="./"] {
  15. /* This is the "Back to your feeds" button.*/
  16. margin: 0;
  17. padding: 0.75rem 1.5rem;
  18. background: var(--grey-lighter);
  19. display: inline-block;
  20. color: var(--grey-dark);
  21. font-size: 1rem;
  22. border: 1px solid var(--grey-medium-light);
  23. border-radius: 5px;
  24. min-width: 15px;
  25. line-height: 25px;
  26. vertical-align: middle;
  27. cursor: pointer;
  28. overflow: hidden;
  29. &:hover {
  30. background: var(--main-first);
  31. color: white;
  32. border: 1px solid var(--main-first);
  33. text-decoration: none;
  34. }
  35. }
  36. }
  37. #slider {
  38. border-left: none;
  39. box-shadow: 0px 6px 8px 0px rgba(0,0,0,0.35);
  40. }
  41. .theme-preview-list {
  42. .preview-container {
  43. .properties {
  44. padding: 1rem;
  45. background: rgba(0, 0, 0, 0.75);
  46. color: white;
  47. border: 0;
  48. .page-number {
  49. right: 1rem;
  50. top: 1rem;
  51. }
  52. }
  53. }
  54. }