style.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. body {
  2. font-family: 'Noto Serif SC', serif, 'Anonymous Pro', monospace;
  3. background-color: floralwhite;
  4. }
  5. h1,
  6. h2,
  7. h3,
  8. h4 {
  9. font-weight: bold;
  10. }
  11. @media screen {
  12. body {
  13. padding: 20px 5px 5px 5px;
  14. }
  15. }
  16. @media screen and (min-width:699px) {
  17. body {
  18. padding: 20px 75px 40px 75px;
  19. }
  20. #fileOutput {
  21. margin-right: 50px;
  22. }
  23. .table {
  24. margin-left: 60px;
  25. }
  26. }
  27. @media screen and (min-width:1200px) {
  28. body {
  29. padding: 20px 150px 40px 150px;
  30. }
  31. #fileOutput {
  32. margin-right: 200px;
  33. }
  34. .table {
  35. margin-left: 100px;
  36. }
  37. }
  38. .table {
  39. font-size: 14px;
  40. }
  41. .chart {
  42. width: auto;
  43. height: 400px;
  44. }
  45. .blurred {
  46. transition-duration: 100ms;
  47. filter: blur(2px);
  48. }
  49. .blurred:hover {
  50. filter: none;
  51. }
  52. .btn-info:focus,
  53. .btn-info:focus-visible {
  54. outline: 5px dashed rgba(95, 177, 221, 0.5);
  55. }
  56. .btn-primary:focus,
  57. .btn-primary:focus-visible {
  58. outline: 5px dashed rgba(46, 109, 164, 0.5);
  59. }
  60. .btn-warning:focus,
  61. .btn-warning:focus-visible {
  62. outline: 5px dashed rgba(200, 157, 39, 0.5);
  63. }
  64. .btn-danger:focus,
  65. .btn-danger:focus-visible {
  66. outline: 5px dashed rgba(234, 71, 71, 0.5);
  67. }
  68. .btn-info:hover,
  69. .btn-info:active {
  70. outline: 10px double rgba(95, 177, 221, 0.5);
  71. }
  72. .btn-primary:hover,
  73. .btn-primary:active {
  74. outline: 10px double rgba(46, 109, 164, 0.5);
  75. }
  76. .btn-warning:hover,
  77. .btn-warning:active {
  78. outline: 10px double rgba(200, 157, 39, 0.5);
  79. }
  80. .btn-danger:hover,
  81. .btn-danger:active {
  82. outline: 10px double rgba(234, 71, 71, 0.5);
  83. }
  84. .btn {
  85. transition-duration: 100ms;
  86. }