Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions iwa810/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="style2.css" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
</head>
<body>
<header>
<img src="img/file.png" class="icon" alt="俺のロゴ" />
<h1>wild-guy810</h1>
</header>
<p>松江高専の一般的な学生です。このホームぺージを不定期的ではあるが、更新していきたいとは思っている。</p>
<h2>経歴</h2>
<table>
<tr><th>May,2007</th><th>島根県出雲市で生まれる</th></tr>
<tr><th>April,2011</th><th>中国江蘇省蘇州市に引っ越す</th></tr>
<tr><th>April,2014</th><th>蘇州日本人学校 入学</th></tr>
<tr><th>September,2016</th><th>出雲市に帰る</th></tr>
<tr><th>April,2020</th><th>出雲市立第一中学校 入学</th></tr>
<tr><th>April,2023</th><th>松江高専電気情報工学科 入学</th></tr>
<tr><th class="tyometyome">〃</th><th>   〃    弓道部 入部</th></tr>
<tr><th>June,2023</th><th>   〃    情報科学研究部 入部</th></tr>
</table>
<h2>好きなこと</h2>
<ul>
<li>弓道</li>
<li>サッカー</li>
<li>バスケ</li>
<li>game</li>
<li>ネットミーム</li>
</ul>
<h2>これから頑張んないといけないこと</h2>
<ul>
<li>R6年度高専プロコンの課題部門(本選出場決定)</li>
<li>大学編入に備えた,数学英語の勉強</li>
<li>弓道弐段</li>
<li>JOI</li>
</ul>
<h2>資格</h2>
<p>なし</p>

<div id="app"></div>
<script type="module" src="/main.js"></script>
<footer>
<a href="https://github.com/wild-guy810">
<img src="img/git hub.jpg" alt="githubのロゴ"
/></a>
<a href="https://x.com/114iwakka514">
<img src="img/X.jpg" alt="twitterのロゴ" />
</a>
<p class="copylight">© 2024 wild-guy810</p>
</footer>
</body>

</html>
97 changes: 97 additions & 0 deletions iwa810/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
:root {
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;

color-scheme: light dark;
color: rgba(255, 255, 255, 0.87);
background-color: #242424;

font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

a {
font-weight: 500;
color: #646cff;
text-decoration: inherit;
}
a:hover {
color: #535bf2;
}

body {
margin: 0;
display: flex;
place-items: center;
min-width: 320px;
min-height: 100vh;
}

h1 {
font-size: 3.2em;
line-height: 1.1;
}

#app {
max-width: 1280px;
margin: 0 auto;
padding: 2rem;
text-align: center;
}

.logo {
height: 6em;
padding: 1.5em;
will-change: filter;
transition: filter 300ms;
}
.logo:hover {
filter: drop-shadow(0 0 2em #646cffaa);
}
.logo.vanilla:hover {
filter: drop-shadow(0 0 2em #f7df1eaa);
}

.card {
padding: 2em;
}

.read-the-docs {
color: #888;
}

button {
border-radius: 8px;
border: 1px solid transparent;
padding: 0.6em 1.2em;
font-size: 1em;
font-weight: 500;
font-family: inherit;
background-color: #1a1a1a;
cursor: pointer;
transition: border-color 0.25s;
}
button:hover {
border-color: #646cff;
}
button:focus,
button:focus-visible {
outline: 4px auto -webkit-focus-ring-color;
}

@media (prefers-color-scheme: light) {
:root {
color: #213547;
background-color: #ffffff;
}
a:hover {
color: #747bff;
}
button {
background-color: #f9f9f9;
}
}

1 change: 1 addition & 0 deletions procon-team1
Submodule procon-team1 added at ba1345
1 change: 1 addition & 0 deletions public/vite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default defineConfig({
rollupOptions: {
input: {
main: resolve(__dirname, 'index.html'),
a: resolve(__dirname, 'mwyk/index.html'),
iwa810: resolve(__dirname, 'iwa810/index.html'),
},
},
},
Expand Down