-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (90 loc) · 2.79 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shuto Takashita's Portfolio</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700&family=Roboto:wght@400;700&display=swap"
rel="stylesheet">
<!-- Google Fontsのリンクを追加 -->
<style>
body {
background-color: #080808;
color: white;
font-family: Arial, sans-serif;
/* デフォルトのフォント設定 */
text-align: center;
padding: 50px 0;
}
img.logo {
width: 400px;
opacity: 0.4;
position: relative;
z-index: 1;
}
h1 {
font-size: 6em;
font-family: 'Big Shoulders Display', Arial, sans-serif;
margin-bottom: -250px;
/* ロゴとの間にスペースを追加 */
}
a {
color: white;
text-decoration: none;
margin: 0 15px;
font-size: 1.5em;
}
a.work-link {
font-family: 'Roboto', Arial, sans-serif;
/* Robotoフォントを設定 */
}
.info .university {
font-family: sans-serif;
/* サンセリフフォントを設定 */
}
a:hover {
text-decoration: underline;
}
.info {
margin-top: 30px;
font-size: 1.2em;
}
@media (min-width: 768px) {
img.logo {
width: 800px;
/* PC表示時のロゴサイズを2倍に */
}
h1 {
font-size: 12em;
margin-bottom: -500px;
/* 名前のフォントサイズを2倍に */
}
a {
font-size: 3em;
/* リンクのフォントサイズを2倍に */
}
.info {
font-size: 2.4em;
/* 情報部分のフォントサイズを2倍に */
}
}
</style>
</head>
<body>
<h1>Shuto Takashita</h1>
<img src="logo_white.png" alt="Shuto Takashita's Logo" class="logo">
<div>
<a href="/work" class="work-link">Work</a>
<a href="/about">About</a>
</div>
<div class="info">
<p class="university">The University of Tokyo GSII</p>
<p>Research Fields: Non-humanoid Avatar, HCI, Space Engineering</p>
<p>Twitter: @shike_cosmicXR</p>
<p>Mail: [email protected]</p>
</div>
</body>
</html>