forked from Story-Of-Alicia/.github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
152 lines (128 loc) · 2.72 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
148
149
150
151
152
<html lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>Story of Alicia</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<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=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/0ead5b1f35.js" crossorigin="anonymous"></script>
</head>
<style>
@font-face {
font-family: Eurostile;
src: url('eurostile.otf');
}
@font-face {
font-family: Quincho;
src: url('quincho.ttf');
}
body {
padding: 0;
margin: 0;
width: 100%;
height: 100%;
background-image: url('bg.png');
background-color: #DFE4EA;
background-size: auto 100%;
background-position-x: right;
background-position-y: top;
background-repeat: no-repeat;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: center;
}
#content {
display: flex;
width: 50%;
padding: 10%;
}
#header
{
display: flex;
flex-direction: column;
}
#header p
{
font-family: Eurostile;
}
#header div
{
display: flex;
justify-content: center;
}
#title p {
color: #2C2B2B;
font-size: 7rem;
padding: 0;
margin: 0;
text-align: center;
}
#title .script
{
font-size: 8.75rem;
font-family: Quincho;
}
#description p {
margin: 0;
color: #6D84BD;
max-width: 70%;
text-align: center;
font-size: 2rem;
text-transform: uppercase;
}
#socials {
padding: 2rem;
}
#socials a
{
color: #B4C9DE;
}
#socials a:hover
{
color: #6D84BD;
transition: background-color 0.3s ease, color 0.3s ease;
}
#socials i
{
font-size: 4rem;
padding: 1rem;
}
@media (max-width: 850px) {
#content {
width: 100%;
padding: 0;
}
body{
background-position: center;
}
}
</style>
<body>
<div id="content">
<div id="header">
<div id="title">
<p>STORY OF <span class="script">Alicia</span></p>
</div>
<div id="description">
<p>Story of Alicia is a fan-made private server and preservation project for Ntreev Soft's Alicia.</p>
</div>
<div id="socials">
<a href="https://discord.gg/storyofalicia" target="_blank">
<i class="fa-brands fa-discord"></i>
</a>
<a href="https://vk.com/story_of_alicia" target="_blank">
<i class="fa-brands fa-vk"></i>
</a>
<a href="https://github.com/Story-Of-Alicia" target="_blank">
<i class="fa-brands fa-github"></i>
</a>
<a href="https://wiki.storyofalicia.com" target="_blank">
<i class="fa-solid fa-book"></i>
</a>
</div>
</div>
</div>
</body>
</html>