Skip to content

I translated Scala Introduction for Python developers to japanese #3136

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Jan 1, 2025
Prev Previous commit
EN
Scala4x.css was requested due to a build error, so I responded to that request.

JA
ビルドエラーでscala4x.css が要求されていたので、その要求に答えました。
  • Loading branch information
Toxapex4096 committed Dec 31, 2024
commit c50731447331586ed012619a0602a4c5cd279b0f
54 changes: 54 additions & 0 deletions _ja/overviews/scala3-book/scala4x.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<style>
.content-primary .scala3-comparison-page td code
{
margin: 0;
padding: 0;
background: none;
}
.content-primary .scala3-comparison-page table
{
background: #fdfdf7;
border-collapse: collapse;
}

.content-primary .scala3-comparison-page table td.python-block,
.content-primary .scala3-comparison-page table td.java-block,
.content-primary .scala3-comparison-page table td.javascript-block,
.content-primary .scala3-comparison-page table td.scala-block
{
position: relative;
padding-bottom: 20px;
}
.content-primary .scala3-comparison-page table td.python-block:after,
.content-primary .scala3-comparison-page table td.java-block:after,
.content-primary .scala3-comparison-page table td.javascript-block:after,
.content-primary .scala3-comparison-page table td.scala-block:after
{
color: #ccc;
display: block;
font-size: 17px;
line-height: 1;
position: absolute;
top: 8px;
right: 2px;
z-index: 1;
}
.content-primary .scala3-comparison-page table td.python-block:after {
content: "python";
}
.content-primary .scala3-comparison-page table td.java-block:after {
content: "java";
}
.content-primary .scala3-comparison-page table td.javascript-block:after {
content: "javascript";
}
.content-primary .scala3-comparison-page table td.scala-block:after {
content: "scala";
}
.content-primary .scala3-comparison-page h4 {
font-weight: normal;
font-variant-caps: all-small-caps;
}
</style>