Skip to content

Commit 6f6c1b4

Browse files
committed
lock project image aspect ratio
1 parent 07c06bf commit 6f6c1b4

File tree

20 files changed

+84
-51
lines changed

20 files changed

+84
-51
lines changed

contents/articles/2019/11-03_utcode-lectures-04/index.mdx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,9 @@ CSS セレクタは、ブラウザが CSS を適用する際、どの HTML 要
155155

156156
疑似クラスを用いると、CSS を用いたインタラクティブな表現が簡単に実装できます。以下の文字列にカーソルを合わせてみてください。
157157

158-
<div class="hover:text-red hover:text-lg" />
158+
<div class="hover:text-[red] hover:text-lg">
159+
Hello World!
160+
</div>
159161

160162
これは、以下のようにして実装されています。
161163

@@ -166,7 +168,7 @@ CSS セレクタは、ブラウザが CSS を適用する際、どの HTML 要
166168
```
167169
#message:hover {
168170
color: red;
169-
font-size: 30px;
171+
font-size: 18px;
170172
}
171173
```
172174

contents/projects/cobuilder/index.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ title: cobuilder
33
slug: cobuilder
44
date: 2023-04-04
55
description: 仮想空間を参加者全員で作り上げ、自分たちだけの世界を作るメタバースを作ります
6-
image: ./image.png
6+
image:
7+
src: ./image.png
78
tags: [C#, Unity]
89
github: https://github.com/ut-code/cobuilder
910
---

contents/projects/create-cpu/index.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
title: CreateCPU
33
slug: create-cpu
44
date: 2023-04-01
5-
image: ./image.png
5+
image:
6+
src: ./image.png
67
description: 現代コンピュータの頭脳である CPU は、単純な論理回路を大量に組み合わせた巨大なシステムです。CreateCPU を使うと、最も単純な回路素子をつなぎ合わせて自分だけの CPU を作り上げることができます。
78
tags: [TypeScript, React]
89
github: https://github.com/ut-code/create-cpu

contents/projects/dull-meshi/index.mdx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
---
22
title: だるめし
33
slug: dull-meshi
4-
image: ./dull-meshi.jpg
4+
image:
5+
src: ./dull-meshi.jpg
6+
fit: contain
7+
bg: "#E6E0DB"
58
date: 2023-04-05
69
description: 質問に答えていくだけで献立を提案してくれるアプリ
710
tags: [TypeScript, React]

contents/projects/learn-braille/index.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
---
22
title: Dot Tutor Learn
33
slug: dot-tutor-learn
4-
image: ./image.png
4+
image:
5+
src: ./image.png
6+
fit: contain
57
date: 2023-01-28
68
description: 体験型点字学習サイト Dot Tutor Learn です。
79
tags: [TypeScript, React]

contents/projects/nikochan/index.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
title: Falling Nikochan
33
slug: nikochan
4-
image: ./image.jpg
4+
image:
5+
src: ./image.jpg
56
date: 2024-09-24
67
description: シンプルでかわいい音ゲーです。誰でも譜面を作ってシェアできます。
78
tags: [JavaScript, TypeScript, React, Next.js, Hono, MongoDB]

contents/projects/postput/index.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
title: PostPut
33
slug: postput
4-
image: ./image.png
4+
image:
5+
src: ./image.png
56
date: 2023-04-03
67
description: 送信したメッセージに後からタグ付けできるチャットツール
78
tags: [JavaScript, React, Node.js, Express, Passport.js, Prisma, WebSocket]

contents/projects/syllabus/index.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
title: シ楽バス
33
slug: syllabus
44
order: 2
5-
image: ./image.jpg
5+
image:
6+
src: ./image.jpg
67
date: 2023-10-02
78
description: 前期課程に特化した時間割サービス
89
tags: [JavaScript]

contents/projects/th-beat/index.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
title: 東方競争曲
33
slug: touhoubeat
4-
image: ./image.png
4+
image:
5+
src: ./image.png
56
date: 2023-12-19
67
description: 東方Projectのアレンジ曲で遊べるリズムゲーム
78
tags: [C#, Unity, AWS, Go, TypeScript, React]

contents/projects/translate-braille/index.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
---
22
title: Dot Tutor Translate
33
slug: dot-tutor-translate
4-
image: ./image.png
4+
image:
5+
src: ./image.png
6+
fit: contain
57
date: 2023-01-28
68
description: 点字翻訳サイト Dot Tutor Translate です。
79
tags: [TypeScript, React, Python, FastAPI]

0 commit comments

Comments
 (0)