-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathlang.html
162 lines (133 loc) · 4.42 KB
/
lang.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Codeit - Supported languages</title>
<meta name="theme-color" content="#1a1c24">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no,viewport-fit=cover,shrink-to-fit=no">
<link rel="shortcut icon" href="/icons/app-favicon.png">
<style>
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 100 900;
font-display: swap;
src: url('/fonts/Inter/Inter.var.woff2') format('woff2');
font-named-instance: 'Regular';
}
html {
height: 100%;
background: #1a1c24;
color: #d4d5d7;
font-family: 'Inter', system-ui, sans-serif;
text-align: center;
}
body {
display: flex;
flex-flow: column;
margin: 0;
max-width: 500px;
margin: auto;
padding: 0 20px;
}
.logo {
width: 70px;
border-radius: 22.5%;
border: 1px solid rgba(255,255,255,.1);
margin: 0 auto;
margin-bottom: 24px;
margin-top: 50px;
}
.title {
font-size: 19px;
margin-bottom: 24px;
margin-top: 0;
position: relative;
text-align: center;
}
.button {
display: flex;
justify-content: center;
align-items: center;
border-radius: 15px;
box-sizing: border-box;
min-height: 40px;
white-space: nowrap;
font-size: 16px;
padding: 7px 84px;
height: 50px;
width: 233px;
font-weight: 500;
background: hsl(223deg 88% 52%);
color: #fff;
margin: 0 auto;
transition: .1s var(--ease-function);
transition-property: background, color;
}
.button:hover {
background: hsl(223deg 85% 54%);
transition: none;
}
.button:active {
color: rgba(255,255,255,0.25);
background: hsla(223deg 88% 52% / 50%) !important;
transition: none;
}
a {
text-decoration: none;
color: hsl(223deg 86% 73%);
}
a:hover {
text-decoration: underline;
}
body {
--ease-function: cubic-bezier(0.32, 0.08, 0.24, 1);
}
html, body {
text-rendering: optimizeLegibility;
font-feature-settings: "kern";
-webkit-font-feature-settings: "kern";
font-synthesis: none;
user-select: text;
-webkit-user-select: text;
-webkit-touch-callout: none;
-webkit-font-smoothing: antialiased;
-webkit-tap-highlight-color: transparent;
-webkit-text-size-adjust: 100%;
-webkit-overflow-scrolling: touch;
-webkit-text-size-adjust: none;
}
</style>
<meta name="description" content="Run projects, code your ideas, and share it all on Codeit.">
<meta property="og:title" content="Codeit - Supported languages">
<meta property="og:description" content="Run projects, code your ideas, and share it all on Codeit.">
<meta property="og:url" content="https://codeit.codes">
<meta property="og:image" content="https://codeit.codes/images/banner-og.png">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Codeit">
<meta property="twitter:title" content="Codeit - Supported languages">
<meta property="twitter:site" content="@codeitcodes">
<meta name="twitter:card" content="summary">
<meta name="twitter:description" content="Run projects, code your ideas, and share it all on Codeit.">
<meta name="twitter:image" content="https://codeit.codes/images/banner-og.png">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="referrer" content="origin-when-cross-origin">
<script defer="" data-domain="codeit.codes" src="https://plausible.io/js/plausible.js"></script>
</head>
<body ontouchstart="">
<img class="logo" src="/icons/iphone-app-180.png" width="80" draggable="false" alt="Codeit">
<p class="title">Supported languages</p>
<div class="languages" style="display: inline-block;line-height: 1.5;text-align: left;width: max-content;margin: auto;">Just a sec...</div>
<p style="margin-top: 50px;margin-bottom: 50px;">
<a href="/" style="color: inherit;">- ❤️ Codeit team</a>
</p>
<script src="https://prismjs.com/components.js"></script>
<script>
let out = '';
Object.keys(components.languages).forEach(lang => {
out += '<li>' + lang + '</li>';
});
document.querySelector('.languages').innerHTML = out;
</script>
</body>
</html>