_configuration.scss 1.1 KB

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