The source code and dockerfile for the GSW2024 AI Lab.
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

110 lines
1.7 KiB

4 weeks ago
  1. body {font-family:sans-serif;
  2. margin: auto;
  3. max-width: 60em;
  4. text-align: justify;
  5. line-height: 1.4;
  6. font-size: 1em;
  7. }
  8. div.nav { margin-top:1em; position: absolute; top:0em; left:0em}
  9. a.nav {text-decoration: none; color:grey; margin:1em}
  10. .prog {
  11. font-weight: bold;
  12. font-family: monospace;
  13. font-size: larger;
  14. }
  15. .cmdline {
  16. font-weight: normal;
  17. font-family: monospace;
  18. font-size: larger;
  19. }
  20. .classname {
  21. font-weight: normal;
  22. font-family: monospace;
  23. font-size: larger;
  24. }
  25. .alert {
  26. background-color: #ffd0d0;
  27. border: 1px solid #c0d0d0;
  28. }
  29. h1 {
  30. padding-top: 1em;
  31. border-bottom: 3px solid #4F8BAB;
  32. text-align: center;
  33. }
  34. h2 {
  35. background-color: #6FC5EB;
  36. padding: 0.3em;
  37. margin-left: -.5em;
  38. margin-right: -.5em;
  39. margin-top: 2em;
  40. border: 1px solid grey;
  41. border-radius: 0.2em;
  42. }
  43. h3 {
  44. background-color: #E0F0FF;
  45. padding: 0.3em;
  46. margin-left: -0.5em;
  47. margin-top: 2em;
  48. border: 1px solid black;
  49. border-radius: 0.2em;
  50. }
  51. .blue1 { color: #4F8BAB; }
  52. .blue2 { color: #4F9BC9; }
  53. .blue3 { color: #64B3DF; }
  54. :link, :visited { color: #4f4fe0; text-decoration: none }
  55. a.explanationref {font-size:70%; vertical-align: super}
  56. div.block {
  57. margin-left: 2em;
  58. margin-right: 2em;
  59. padding: 0.5em;
  60. border: 1px solid blue;
  61. margin-bottom: 1em;
  62. }
  63. li {
  64. padding-bottom: 0.5em;
  65. }
  66. pre {
  67. font-size: 120%
  68. }
  69. pre.command {
  70. background-color: #f0f0f0;
  71. margin: 1em 2em;
  72. padding: 0.5em 0em 0.5em 2em;
  73. border-radius: 0.15em;
  74. }
  75. pre.commandWithOutput {
  76. background-color: #f0f0f0;
  77. margin: 1em 2em 0em 2em;
  78. padding: 0.5em 0em 0.5em 2em;
  79. border-radius: 0.15em;
  80. }
  81. pre.output {
  82. background-color: #e0e0e0;
  83. margin: 0em 2em 1em 3em;
  84. padding: 0.5em 0em 0.5em 2em;
  85. border-radius: 0.15em;
  86. }
  87. div.code {
  88. margin: 0.5em; padding: 0.5em; border: 1px solid #c0c0c0;
  89. }