forked from lukablaskovic/macroquiet-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
151 lines (143 loc) · 3.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap"
rel="stylesheet" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="MacroQuiet - Indie Game Development Studio From Croatia." />
<title>MacroQuiet</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
<script
src="https://kit.fontawesome.com/dd2c5124db.js"
crossorigin="anonymous"></script>
</body>
</html>
<style>
:root {
--thumb: #ef5350;
--thumbhover: #cbd5e1;
--thumbbg: #06060a;
}
.Poppins {
font-family: "Poppins", sans-serif;
}
html {
background-color: var(--thumbbg);
}
::-webkit-scrollbar {
width: 6px;
}
html body::-webkit-scrollbar-track {
background: var(--thumbbg);
}
::-webkit-scrollbar-thumb {
background: var(--thumb);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--thumbhover);
}
::-webkit-scrollbar-corner {
background: #00000000;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
transition: all 0s 50000s;
}
::selection {
color: var(--thumbbg);
background: var(--thumb);
}
@font-face {
font-family: pdark;
src: url("@/assets/fonts/pdark.ttf");
}
@font-face {
font-family: logo_font;
src: url("@/assets/fonts/Nevan.ttf");
}
@font-face {
font-family: EHSMB;
src: url("@/assets/fonts/EHSMB.TTF");
}
@font-face {
font-family: Squarewave;
src: url("@/assets/fonts/Squarewave.ttf");
}
.Squarewave {
font-family: Squarewave;
}
.EHSMB {
font-family: EHSMB;
}
.p-dark {
font-family: pdark;
}
.logo_font {
font-family: logo_font;
}
.rendering-auto {
image-rendering: auto;
}
.rendering-crisp-edges {
image-rendering: crisp-edges;
}
.rendering-pixelated {
image-rendering: pixelated;
}
html,
body,
#app {
height: 100%;
}
.fade-enter-active,
.fade-leave-active {
transition: all 0.3s;
}
.fade-enter-from {
opacity: 0;
}
.fade-leave-to {
opacity: 0;
}
.ql-align-right {
text-align: right !important;
}
.ql-align-left {
text-align: left !important;
}
.ql-align-center {
text-align: center !important;
}
.ql-align-justify {
text-align: justify !important;
}
.main {
background-image: url("src/assets/background/night_sky.gif");
background-size: 480px 270px;
background-position: center;
}
.main-stranded {
background: content-box url("src/assets/games/page/StrandedAway/bg.png")
center/150% auto no-repeat,
content-box url("src/assets/background/night_sky.gif") center/480px 270px;
}
.main-doge {
background-image: url("src/assets/background/doge_bg.jpg");
background-size: 1920px 720px;
background-position: center;
}
</style>