style.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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:focus:active,.btn:focus {
  53. outline: 0;
  54. }
  55. .btn-info:focus,
  56. .btn-info:focus-visible,
  57. .btn-info:active:focus {
  58. outline: 5px dashed rgba(95, 177, 221, 0.5);
  59. }
  60. .btn-primary:focus,
  61. .btn-primary:focus-visible,
  62. .btn-primary:active:focus {
  63. outline: 5px dashed rgba(46, 109, 164, 0.5);
  64. }
  65. .btn-warning:focus,
  66. .btn-warning:focus-visible,
  67. .btn-warning:active:focus {
  68. outline: 5px dashed rgba(200, 157, 39, 0.5);
  69. }
  70. .btn-danger:focus,
  71. .btn-danger:focus-visible,
  72. .btn-danger:active:focus {
  73. outline: 5px dashed rgba(234, 71, 71, 0.5);
  74. }
  75. .btn-info:hover,
  76. .btn-info:active {
  77. outline: 10px double rgba(95, 177, 221, 0.5);
  78. }
  79. .btn-primary:hover,
  80. .btn-primary:active {
  81. outline: 10px double rgba(46, 109, 164, 0.5);
  82. }
  83. .btn-warning:hover,
  84. .btn-warning:active {
  85. outline: 10px double rgba(200, 157, 39, 0.5);
  86. }
  87. .btn-danger:hover,
  88. .btn-danger:active {
  89. outline: 10px double rgba(234, 71, 71, 0.5);
  90. }
  91. .btn {
  92. transition-duration: 100ms;
  93. }