_configuration.scss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /*=== Configuration pages */
  2. .post {
  3. padding: 1rem 2rem;
  4. font-size: 1rem;
  5. form {
  6. margin: 1rem 0;
  7. // Gestion des extensions
  8. .horizontal-list{
  9. margin-bottom: 0.5rem;
  10. .item{
  11. .stick{
  12. // width: 65%;
  13. // margin-right: 1rem;
  14. // display:flex;
  15. }
  16. .btn{
  17. // width: 8rem;
  18. // flex-grow: 1;
  19. }
  20. }
  21. }
  22. }
  23. &.content {
  24. max-width: 550px;
  25. }
  26. h1, h2{ // pages titles
  27. font-size: 3rem;
  28. margin-top: 1.75rem;
  29. font-weight: 300;
  30. line-height: 1.2em;
  31. // font-family: "spectral";
  32. color: $main-font-color;
  33. }
  34. a[href="./"]{ // C'est le bouton "Retour à vos flux"
  35. display: inline-block;
  36. // min-height: 38px;
  37. min-width: 15px;
  38. line-height: 25px;
  39. margin: 0;
  40. padding: 0.75rem 1.5rem;
  41. font-size: 1rem;
  42. vertical-align: middle;
  43. cursor: pointer;
  44. overflow: hidden;
  45. background: $grey-lighter;
  46. border: 1px solid $grey-medium-light;
  47. border-radius: 5px;
  48. // border: none;
  49. color: $grey-dark;
  50. &:hover{
  51. text-decoration: none;
  52. background: $main-first;
  53. color: white;
  54. border: 1px solid $main-first;
  55. }
  56. }
  57. }
  58. #slider{
  59. border-left: none;
  60. -webkit-box-shadow: 0px 6px 8px 0px rgba(0,0,0,0.35);
  61. -moz-box-shadow: 0px 6px 8px 0px rgba(0,0,0,0.35);
  62. box-shadow: 0px 6px 8px 0px rgba(0,0,0,0.35);
  63. }
  64. .slide-container{
  65. .properties{
  66. background: rgba(0, 0, 0, 0.75);
  67. border: 0;
  68. padding: 1rem;
  69. color: white;
  70. .page-number{
  71. right: 1rem;
  72. top: 1rem;
  73. }
  74. }
  75. }