Roll dice (eg Asphodice) and show outcomes https://rpg.bertieb.org/dice-roller/
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.
 
 
 
 

101 lines
1.5 KiB

  1. body {
  2. font-size: .875rem;
  3. }
  4. .feather {
  5. width: 16px;
  6. height: 16px;
  7. vertical-align: text-bottom;
  8. }
  9. /*
  10. * Sidebar
  11. */
  12. .sidebar {
  13. position: fixed;
  14. top: 0;
  15. /* rtl:raw:
  16. right: 0;
  17. */
  18. bottom: 0;
  19. /* rtl:remove */
  20. left: 0;
  21. z-index: 100; /* Behind the navbar */
  22. padding: 48px 0 0; /* Height of navbar */
  23. box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
  24. }
  25. @media (max-width: 767.98px) {
  26. .sidebar {
  27. top: 5rem;
  28. }
  29. }
  30. .sidebar-sticky {
  31. position: relative;
  32. top: 0;
  33. height: calc(100vh - 48px);
  34. padding-top: .5rem;
  35. overflow-x: hidden;
  36. overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
  37. }
  38. .sidebar .nav-link {
  39. font-weight: 500;
  40. color: #333;
  41. }
  42. .sidebar .nav-link .feather {
  43. margin-right: 4px;
  44. color: #727272;
  45. }
  46. .sidebar .nav-link.active {
  47. color: #007bff;
  48. }
  49. .sidebar .nav-link:hover .feather,
  50. .sidebar .nav-link.active .feather {
  51. color: inherit;
  52. }
  53. .sidebar-heading {
  54. font-size: .75rem;
  55. text-transform: uppercase;
  56. }
  57. /*
  58. * Navbar
  59. */
  60. .navbar-brand {
  61. padding-top: .75rem;
  62. padding-bottom: .75rem;
  63. font-size: 1rem;
  64. background-color: rgba(0, 0, 0, .25);
  65. box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);
  66. }
  67. .navbar .navbar-toggler {
  68. top: .25rem;
  69. right: 1rem;
  70. }
  71. .navbar .form-control {
  72. padding: .75rem 1rem;
  73. border-width: 0;
  74. border-radius: 0;
  75. }
  76. .form-control-dark {
  77. color: #fff;
  78. background-color: rgba(255, 255, 255, .1);
  79. border-color: rgba(255, 255, 255, .1);
  80. }
  81. .form-control-dark:focus {
  82. border-color: transparent;
  83. box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
  84. }