This repository was archived by the owner on Aug 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpresskit.html
174 lines (171 loc) · 5.23 KB
/
presskit.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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!DOCTYPE html>
<html lang="ja">
<head id="head">
<!-- ページの内容 -->
<title>プレスキット | VCborn</title>
<meta name="description" content="VCborn公式サイト" />
<!-- OGPタグ用 -->
<meta property="og:url" content="https://vcborn.com/presskit.html" />
<meta property="og:title" content="プレスキット | VCborn" />
<meta property="og:type" content="website" />
<meta property="og:description" content="VCborn公式サイト" />
<meta property="og:image" content="https://vcborn.com/images/jpg/ogp.jpg" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@vcborn_support" />
<meta property="og:site_name" content="VCborn" />
<meta property="og:locale" content="ja_JP" />
<meta charset="utf-8" />
<!-- GooogleAdsense -->
<script
async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1336300432888389"
crossorigin="anonymous"
></script>
<!-- GoogleAnalytics-->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-8GC99E31DE"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-8GC99E31DE");
</script>
<style>
.caution{
text-align: center;
color: red;
}
.container {
margin-left: auto;
margin-right: auto;
width: 100%;
max-width: 64rem;
}
.space {
margin: 2rem;
}
.flex {
display: flex;
justify-content: space-between;
flex-direction: row;
margin-bottom: 2rem;
}
.container h3 {
font-size: 1.5rem;
}
.button {
margin-top: 1rem;
margin-bottom: 1rem;
display: inline-block;
background-color: #163469;
color: white;
padding: 0.5rem 1rem;
text-decoration: none;
-webkit-transition-duration: 200ms;
transition-duration: 200ms;
}
.button:hover {
opacity: 0.8;
}
.container picture {
max-width: 50%;
}
.container img {
border-radius: 1rem;
width: 100%;
}
@media (max-width: 770px) {
.container .flex {
display: block;
}
.container .flex div {
width: 100%;
}
.container img {
max-width: 100%;
}
}
</style>
</head>
<body>
<header id="header"></header>
<main id="">
<section id="h2-title">
<div id="particles-js"></div>
<h2>
<span>PRESS KIT</span>
<span>プレスキット</span>
</h2>
</section>
<section class="container">
<div class="caution">
<p style="color : red">※無断で二次配布等の行為はしないでください。</font></p>
</div>
<div class="space">
<div class="flex">
<div>
<h3>VCborn</h3>
<p>ロゴ + アイコン</p>
<a href="/files/assets/vcborn-assets.zip" class="button">
Download
<i class="fas fa-download"></i>
</a>
</div>
<picture>
<source
srcset="/images/webp/vcborn-presskit.webp"
type="image/webp"
/>
<img src="/images/jpg/vcborn-presskit.jpg" alt="VCborn Logo" />
</picture>
</div>
<div class="flex">
<div>
<h3>VCLinux</h3>
<p>ロゴ + スクリーンショット + etc...</p>
<a href="/files/assets/vclinux-assets.zip" class="button">
Download
<i class="fas fa-download"></i>
</a>
</div>
<picture>
<source
srcset="/images/webp/vclinux-presskit.webp"
type="image/webp"
/>
<img src="/images/jpg/vclinux-presskit.jpg" alt="VCLinux Logo" />
</picture>
</div>
<div class="flex">
<div>
<h3>Reamix</h3>
<p>ロゴ + アイコン</p>
<a href="/files/assets/monot-assets.zip" class="button">
Download
<i class="fas fa-download"></i>
</a>
</div>
<picture>
<source
srcset="/images/webp/monot-presskit.webp"
type="image/webp"
/>
<img src="/images/jpg/monot-presskit.jpg" alt="Reamix Logo" />
</picture>
</div>
</div>
</section>
</main>
<footer id="footer"></footer>
<!-- リンク読み込み -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/tsparticles/1.33.3/tsparticles.slim.min.js"></script>
<!-- particles.js -->
<script src="/js/script.js"></script>
<script src="/include.js"></script>
<!-- 共通化用 -->
</body>
</html>