This commit is contained in:
2023-10-17 08:30:31 +09:00
parent fe4eb154fa
commit 2eabc3b865
3 changed files with 18 additions and 1 deletions

View File

@ -1,3 +1,7 @@
# 「モダンからはじめる プログラミング生活!」 # 「モダンからはじめる プログラミング生活!」
- [はじめに](README.md) - [はじめに](README.md)
## Web (TypeScript / JavaScript) 編
- [モダンからはじめる Web アプリ開発!](WebApps/README.md)

9
src/WebApps/README.md Normal file
View File

@ -0,0 +1,9 @@
# 「モダンからはじめる Web アプリ開発!」
## はじめに
## 目次
1. 開発環境の準備 ()
2. はじめての Web ページ ()

View File

@ -6,7 +6,7 @@
} }
@font-face { @font-face {
font-family: "FirgeNerdConsole"; font-family: "FirgeNerd";
src: url("./fonts/woff2/FirgeNerd-Bold.woff2") format("woff2"); src: url("./fonts/woff2/FirgeNerd-Bold.woff2") format("woff2");
font-weight: bold; font-weight: bold;
font-style: normal; font-style: normal;
@ -16,6 +16,10 @@
font-family: "FirgeNerd", "Helvetica Neue", Helvetica, Arial, sans-serif; font-family: "FirgeNerd", "Helvetica Neue", Helvetica, Arial, sans-serif;
} }
.markdown-section p {
font-size: 1.1em;
}
.markdown-section code, .markdown-section code,
.markdown-section pre { .markdown-section pre {
font-family: "FirgeNerd", monospace; font-family: "FirgeNerd", monospace;