-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
147 lines (127 loc) · 3.64 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NU-normal</title>
<style>
/* リセット */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
color: #fff;
display: flex;
flex-direction: column;
align-items: center;
background-color: #333333; /* 暗めのグレー */
margin: 0;
}
header {
background-color: #444444;
padding: 40px;
width: 100%;
max-width: 800px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
border-radius: 15px;
margin-top: 30px;
text-align: center;
}
header h1 {
font-size: 2.5em;
font-weight: 600;
color: #fff;
}
header p {
font-size: 1.2em;
color: #ddd;
margin-top: 10px;
}
main {
padding: 40px 20px;
max-width: 800px;
text-align: center;
}
.app-image {
width: 100%;
max-width: 600px;
border-radius: 20px;
margin-top: 30px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.features {
margin-top: 30px;
font-size: 1.1em;
color: #eee;
line-height: 1.6;
font-weight: 500; /* 紹介文のフォントを太く */
}
.download-buttons {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 30px;
gap: 10px;
}
.download-buttons a {
display: inline-block;
padding: 12px 50px;
font-size: 1em;
font-weight: 500;
color: white;
text-decoration: none;
border-radius: 30px;
background-color: #007aff;
transition: background-color 0.3s;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.download-buttons a:hover {
background-color: #005bb5;
}
footer {
margin-top: 40px;
padding: 20px;
background-color: #444444;
width: 100%;
max-width: 800px;
text-align: center;
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
border-radius: 15px;
}
.privacy_policy a {
color: #007aff;
text-decoration: none;
font-size: 1em;
}
.privacy_policy a:hover {
text-decoration: underline;
}
footer p {
font-size: 0.9em;
color: #aaa;
margin-top: 10px;
}
</style>
</head>
<body>
<header>
<h1>NU-normal</h1>
</header>
<main>
<p class="features">名大生、名大受験生により快適な生活を。単位を、合格を、より確実に掴み取るための機能をお届け。</p>
<img src="Guthrie Update - 2.png" alt="NU-normalアプリのイメージ" class="app-image">
<div class="download-buttons">
<a href="https://apps.apple.com/jp/app/nu-normal/id6504286478" target="_blank">App Storeでダウンロード</a>
</div>
</main>
<footer>
<div class="privacy_policy">
<a href="privacy_policy.html">privacy policy</a>
</div>
<p>© 2024 acrostorn</p>
</footer>
</body>
</html>