-
Notifications
You must be signed in to change notification settings - Fork 1
Feature/demo/mochi #154
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
Feature/demo/mochi #154
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
2d2d966
Create page.html
mochi-k18 efe34e0
Update page.html
mochi-k18 4cef849
Create style.css
mochi-k18 8bfd8c7
Update page.html
mochi-k18 72ed5f1
Update style.css
mochi-k18 e030dc7
Update page.html
mochi-k18 2d508fa
Update style.css
mochi-k18 82fdf37
Add files via upload
mochi-k18 0225a30
Update page.html
mochi-k18 87e6a47
Update page.tsx
mochi-k18 e18283f
Update page.tsx
mochi-k18 2a76fbd
fix underline
utsukushiioto0816-tech daeb410
Update src/app/demo/mochi-k18/page.html
rotarymars 488ffc4
Add rel="noopener noreferrer"
utsukushiioto0816-tech 96bcf10
fix errors
rotarymars fc49aee
change "" to {}
utsukushiioto0816-tech 9be41a2
add styles.
utsukushiioto0816-tech 513956b
Rename from style.css to style.module.css
utsukushiioto0816-tech fd85aae
delete style.css
utsukushiioto0816-tech 48fe479
fixing typo
rotarymars f8e5562
Update src/app/demo/mochi-k18/style.module.css
rotarymars 2bf9d49
a back button
rotarymars 2db90fa
Merge branch 'main' into feature/demo/mochi
rotarymars d1b7b09
formatting files
rotarymars File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,58 @@ | ||
| import Image from "next/image"; | ||
|
|
||
| import { BackButton } from "@/components/BackButton"; | ||
|
|
||
| import profileImage from "./image.png"; | ||
|
|
||
| import styles from "./style.module.css"; | ||
|
|
||
| export default function MochiK180DemoPage() { | ||
| return ( | ||
| <div className={styles.all}> | ||
| <BackButton path="/demo" title="一覧に戻る" /> | ||
| <div className={styles.top}> | ||
| <Image | ||
| src={profileImage} | ||
| className={styles.icon} | ||
| alt="picture" | ||
| width={40} | ||
| height={40} | ||
| /> | ||
| <div className={styles.names}> | ||
| <div className={styles.name}>mochi-k18</div> | ||
| <div className={styles.sub}>一応水泳部。自認はほぼ帰宅部。</div> | ||
| </div> | ||
| </div> | ||
| <div className={styles.title}>自己紹介</div> | ||
| <div className={styles.main}> | ||
| <p>・誕生日:8月11日</p> | ||
| <p> | ||
| ・部活:水泳部。今は幽霊部員のようだが、一応入学からの初期メンツ。頑張っていた時代もあった。 | ||
| </p> | ||
| <p> | ||
| ・趣味:スキー、マンガを読むこと。特に異世界・転生モノ。スポーツマンガも好き。 | ||
| </p> | ||
| <p> | ||
| ・長所(特技):長所なんて自分で書くモノではないので得意なことでも書いておく。 | ||
| <br /> | ||
| スキー、マッサージ(水泳部で鍛えられた。もはや趣味)、人に頼ること? | ||
| </p> | ||
| <p> | ||
| ・短所:定時で起きること。強制されないと何もできない。期限ギリギリまで課題等する気が起きない。 | ||
| </p> | ||
| <p> | ||
| プログラミング関係は初心者です。pythonは少しいじったことある。 | ||
| <br /> | ||
| いつもギリギリで生きています。他人に迷惑はかかりすぎないようにしてる、、、と思いたい。 | ||
| </p> | ||
| <a | ||
| href="https://github.com/mochi-k18" | ||
| target="_blank" | ||
| rel="noopener noreferrer" | ||
| > | ||
| githubアカウント | ||
| </a> | ||
| </div> | ||
| </div> | ||
| ); | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,53 @@ | ||
| body { | ||
| margin: 0; | ||
| font-family: "Hiragino Sans", "Yu Gothic", sans-serif; | ||
| background: linear-gradient(135deg, #7ec8e3, #7ee0b5); | ||
| color: black; | ||
| } | ||
|
rotarymars marked this conversation as resolved.
|
||
| .all { | ||
| padding: 30px; | ||
| } | ||
| .top { | ||
| display: flex; | ||
| align-items: center; | ||
| gap: 20px; | ||
| } | ||
| .icon { | ||
| width: 120px; | ||
| height: 120px; | ||
| border-radius: 50%; | ||
| object-fit: cover; | ||
| display: block; | ||
| } | ||
| .names { | ||
| display: flex; | ||
| flex-direction: column; | ||
| gap: 10px; | ||
| } | ||
| .name, | ||
| .sub { | ||
| background: white; | ||
| padding: 10px 20px; | ||
| border-radius: 20px; | ||
| display: inline-block; | ||
| } | ||
| .name { | ||
| font-size: 26px; | ||
| font-weight: 600; | ||
| } | ||
| .title { | ||
| margin-top: 30px; | ||
| background: white; | ||
| display: inline-block; | ||
| padding: 8px 16px; | ||
| border-radius: 20px; | ||
| font-weight: bold; | ||
| } | ||
| .main { | ||
| margin-top: 15px; | ||
| background: white; | ||
| padding: 20px; | ||
| border-radius: 20px; | ||
| max-width: 900px; | ||
| text-decoration-skip-ink: none; | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.