_configuration.scss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. @use "variables";
  2. /*=== Configuration pages */
  3. .post {
  4. font-size: 1rem;
  5. h1, h2 {
  6. color: variables.$main-font-color;
  7. font-size: 2rem;
  8. margin-top: 1.75rem;
  9. font-weight: 300;
  10. line-height: 1.2em;
  11. }
  12. h2 {
  13. font-size: 1.5rem;
  14. }
  15. a[href="./"] { // This is the "Back to your feeds" button.
  16. margin: 0;
  17. padding: 0.75rem 1.5rem;
  18. background: variables.$grey-lighter;
  19. display: inline-block;
  20. color: variables.$grey-dark;
  21. font-size: 1rem;
  22. border: 1px solid variables.$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: variables.$main-first;
  31. color: white;
  32. border: 1px solid variables.$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. }