You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
1.7 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. @import "../res/colors"
  2. .Tabs-container
  3. background-color: $color-background-elevated
  4. &.Tabs-large
  5. text-align: center
  6. font-size: 175%
  7. .Tabs-element
  8. display: inline-block
  9. padding: 0.25em 0.7ch
  10. cursor: pointer
  11. user-select: none
  12. .Tabs-active
  13. border-bottom: 1px solid $color-foreground
  14. .Tabs-bold
  15. font-family: 'Bitstream Vera Serif', 'Lucida Fax', serif
  16. font-weight: 600
  17. .Page
  18. max-width: 800px
  19. margin: 0.25em auto
  20. .Dialog-overlay
  21. background-color: rgba(0, 0, 0, 0.5)
  22. position: fixed
  23. left: 0
  24. top: 0
  25. right: 0
  26. bottom: 0
  27. overflow-y: scroll
  28. .Dialog-main
  29. max-width: 640px
  30. margin: 4em auto
  31. // background-color: #202020
  32. color: #ddd
  33. outline: none
  34. box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.5)
  35. .Card
  36. margin: 0
  37. .Dialog-title
  38. font-weight: 800
  39. font-size: 200%
  40. text-align: center
  41. padding: 0.25em 0.5ch
  42. .Dialog-body
  43. margin-bottom: 0
  44. .Dialog-footer
  45. border-top: solid 1px #000
  46. .Dialog-container
  47. background-color: $color-background
  48. .Dialog-header
  49. font-size: 140%
  50. font-weight: bold
  51. text-align: center
  52. padding: 0.1em 0
  53. background-color: $color-background-elevated
  54. border-bottom: solid 1px #000
  55. .Dialog-footer
  56. display: flex
  57. flex-direction: row
  58. button
  59. flex-grow: 4
  60. text-align: center
  61. font: inherit
  62. padding: 0.5em 1.5ch
  63. background-color: $color-background-elevated
  64. color: $color-foreground
  65. border: none
  66. cursor: pointer
  67. border-bottom: solid 1px #000
  68. &:hover, &:active
  69. background-color: $color-background-elevated2
  70. color: $color-foreground-elevated
  71. &:not(:last-of-type)
  72. border-right: solid 1px #000