Skip to content

Commit

Permalink
add further languages for box titles (#580)
Browse files Browse the repository at this point in the history
Will be useful for HPC-Carpentry lessons, GPU programming lesson as well as Julia lessons which are currently in the incubator.
  • Loading branch information
bkmgit authored Apr 20, 2021
1 parent 4a9721d commit a56a34e
Showing 1 changed file with 26 additions and 10 deletions.
36 changes: 26 additions & 10 deletions assets/css/lesson.scss
Original file line number Diff line number Diff line change
Expand Up @@ -64,16 +64,32 @@ div.error::before { background-color: #ffebe6; content: "Error"; }
div.warning:before { background-color: #f8f4e8; content:" Warning"; }
div.output::before { background-color: #efefef; content: "Output"; }

div.language-bash::before { content: "Bash"; }
div.language-c::before { content: "C"; }
div.language-cmake::before { content: "CMake"; }
div.language-cpp::before { content: "C++"; }
div.language-html::before { content: "HTML"; }
div.language-make::before { content: "Make"; }
div.language-matlab::before { content: "MATLAB"; }
div.language-python::before { content: "Python"; }
div.language-r::before { content: "R"; }
div.language-sql::before { content: "SQL"; }
div.language-basic::before { content: "Basic"; }
div.language-bash::before { content: "Bash"; }
div.language-c::before { content: "C"; }
div.language-chapel::before { content: "Chapel"; }
div.language-cmake::before { content: "CMake"; }
div.language-cpp::before { content: "C++"; }
div.language-cuda::before { content: "Cuda"; }
div.language-d::before { content: "D"; }
div.language-fortran::before { content: "Fortran"; }
div.language-go::before { content: "Go"; }
div.language-html::before { content: "HTML"; }
div.language-java::before { content: "Java"; }
div.language-julia::before { content: "Julia"; }
div.language-kotlin::before { content: "Kotlin"; }
div.language-lua::before { content: "Lua"; }
div.language-make::before { content: "Make"; }
div.language-matlab::before { content: "MATLAB"; }
div.language-opencl::before { content: "OpenCL"; }
div.language-perl::before { content: "Perl"; }
div.language-python::before { content: "Python"; }
div.language-r::before { content: "R"; }
div.language-ruby::before { content: "Ruby"; }
div.language-rust::before { content: "Rust"; }
div.language-scala::before { content: "Scala"; }
div.language-sql::before { content: "SQL"; }
div.language-vulkan::before { content: "Vulkan"; }

// Tab panels are used on Setup pages to show instructions for different Operating Systems
.tab-pane {
Expand Down

0 comments on commit a56a34e

Please sign in to comment.