_configuration.scss 1.1 KB

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