-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
167 lines (146 loc) · 6.33 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!doctype html>
<meta charset=UTF-8>
<title>LangDev</title>
<meta name=viewport content="width=device-width, initial-scale=0.5">
<link rel=icon type="image/svg+xml" href="data:image/svg+xml;base64,PHN2ZwpoZWlnaHQ9IjUxMiIKd2lkdGg9IjUxMiIKeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgp4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+PGxpbmVhckdyYWRpZW50CmlkPSJhIj48c3RvcApvZmZzZXQ9IjAiCnN0b3AtY29sb3I9IiMxMzQxMWQiLz48c3RvcApvZmZzZXQ9IjEiCnN0b3AtY29sb3I9IiMzN2IyNGQiLz48L2xpbmVhckdyYWRpZW50PjxjaXJjbGUKY3g9IjI1NiIKY3k9IjI1NiIKZmlsbD0idXJsKCNhKSIKcj0iMjU2Igp0cmFuc2Zvcm09Im1hdHJpeCgwCjEKLTEKMAo1MTIKMCkiLz48ZwpmaWxsPSIjZmZmIj48cGF0aApkPSJtNDE0CjE1My4yYy04LjctMTAtMjAuNC0xNS4xLTM1LTE1LjRoLTkxbC00MS42CjIzNi40aDkxYzE0LjctLjMKMjguMS01LjQKNDAuMy0xNS4zaC4xdi0uMWMxMi4xLTEwCjE5LjYtMjEuOQoyMi40LTM1LjhsMjMuNi0xMzMuOWMyLjItMTQtMS4xLTI2LTkuOC0zNS45em0tNDIuOAoyNGMzLjYuMQo2LjUKMS40CjguNwozLjkKMi4xCjIuNAoyLjkKNS40CjIuNAo4LjlsLTIzLjMKMTMyLjFjLS43CjMuNC0yLjYKNi40LTUuNgo4LjktMy4xCjIuNC02LjQKMy43LTEwCjMuOGgtNDguN2wyNy43LTE1Ny42eiIvPjxwYXRoCmQ9Im0yNDMKMzM0LjhoLTEwMy41bDM0LjctMTk3aC00MS40bC00MS42CjIzNi40aDE0NC44eiIvPjwvZz48L3N2Zz4=">
<style>
* { box-sizing: border-box; }
html {
/* Typography */
font-size: 20pt;
font-family: sans-serif;
word-break: keep-all;
overflow-wrap: break-word;
}
body {
background: black;
/* Layout */
margin: 0;
min-height: 100vh;
min-height: -webkit-fill-available;
/* Grid */
display: grid;
grid:
'header' auto
'main' 1fr
/ auto;
}
/* Header */
header {
padding: 2rem;
color: white;
display: grid;
grid:
'title title title' auto
'quote quote quote' auto
'desc desc desc ' auto
'. . . ' auto
/ 6rem 6rem 6rem;
place-content: start center;
gap: 1rem;
/* Background */
position: relative;
overflow-x: hidden;
}
header > h1 { grid-area: title; margin: 0; letter-spacing: -1pt; }
header > #quote { grid-area: quote; color: #aaa; }
header > #desc { grid-area: desc; margin-bottom: 1.5rem; }
header > a { place-self: start; }
header > a > svg {
height: 4rem;
fill: rgba(255, 255, 255, 0.6);
transition: fill 0.35s;
}
header > a > svg:hover:hover { fill: rgb(255, 248, 211); }
/* Background */
@keyframes bg {
00.000% { background-position: -40px; opacity: 0; }
08.333% { opacity: 0.4; }
33.333% { opacity: 0.4; }
41.666% { background-position: +40px; opacity: 0; }
100% { background-position: +40px; opacity: 0; }
}
#bg0, #bg1, #bg2 {
position: absolute;
margin: 0 -40px;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: -1;
background-repeat: no-repeat;
background-size: cover;
animation: 15s linear 0s infinite normal both running bg;
}
#bg0 {
background-image: url(bg0.jpg);
}
#bg1 {
background-image: url(bg1.jpg);
animation-delay: 5s;
}
#bg2 {
background-image: url(bg2.jpg);
animation-delay: 10s;
}
/* Main */
main {
justify-self: stretch;
background: #fff9f0;
color: #353535;
}
article {
margin: 0 auto;
max-width: 1000px;
padding: 2rem;
display: grid;
gap: 1rem;
}
article h3 { margin: 0; }
article h4 { margin: 0; }
article small { color: #333; font-size: 0.6em; }
</style>
<header>
<!-- Background -->
<div id=bg0></div>
<div id=bg1></div>
<div id=bg2></div>
<!-- Contents -->
<h1>LangDev</h1>
<div id=quote>
“차세대 표준 프로토콜 HTTP 1.1”<br>
“<@Moonphone_> 루아믿고 천국가세요”
</div>
<div id=desc>무언가 엄청난 일이 일어나고 있는 커뮤니티.</div>
<a href="https://discord.gg/AdKzZ7u">
<svg viewBox="0 0 24 24"><path d="m20.222 0c1.406 0 2.54 1.137 2.607 2.475v21.525l-2.677-2.273-1.47-1.338-1.604-1.398.67 2.205h-14.038c-1.402 0-2.54-1.065-2.54-2.476v-16.24c0-1.338 1.14-2.477 2.545-2.477h16.5zm-6.118 5.683h-.03l-.202.2c2.073.6 3.076 1.537 3.076 1.537-1.336-.668-2.54-1.002-3.744-1.137-.87-.135-1.74-.064-2.475 0h-.2c-.47 0-1.47.2-2.81.735-.467.203-.735.336-.735.336s1.002-1.002 3.21-1.537l-.135-.135s-1.672-.064-3.477 1.27c0 0-1.805 3.144-1.805 7.02 0 0 1 1.74 3.743 1.806 0 0 .4-.533.805-1.002-1.54-.468-2.14-1.404-2.14-1.404s.134.066.335.2h.06c.03 0 .044.015.06.03v.006c.016.016.03.03.06.03.33.136.66.27.93.4.466.202 1.065.403 1.8.536.93.135 1.996.2 3.21 0 .6-.135 1.2-.267 1.8-.535.39-.2.87-.4 1.397-.737 0 0-.6.936-2.205 1.404.33.466.795 1 .795 1 2.744-.06 3.81-1.8 3.87-1.726 0-3.87-1.815-7.02-1.815-7.02-1.635-1.214-3.165-1.26-3.435-1.26l.056-.02zm.168 4.413c.703 0 1.27.6 1.27 1.335 0 .74-.57 1.34-1.27 1.34s-1.27-.6-1.27-1.334c.002-.74.573-1.338 1.27-1.338zm-4.543 0c.7 0 1.266.6 1.266 1.335 0 .74-.57 1.34-1.27 1.34s-1.27-.6-1.27-1.334c0-.74.57-1.338 1.27-1.338z"/></svg>
</a>
<a href="https://github.com/langdev">
<svg viewBox="0 0 24 24"><path d="m12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61-.546-1.385-1.335-1.755-1.335-1.755-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57 4.801-1.574 8.236-6.074 8.236-11.369 0-6.627-5.373-12-12-12"/></svg>
</a>
</header>
<main>
<article>
<h3>Team Blog Articles</h3>
<div>
<h4><a href="https://blog.langdev.org/order-of-the-engineer">엔지니어 기사단의 맹세</a></h4>
<small><b>sanxiyn</b>, 2022-10-16</small>
</div>
<div>
<h4><a href="https://blog.langdev.org/parameter-syntax-proposal">매개변수 문법 제안</a></h4>
<small><b>disjukr</b>, 2021-05-15</small>
</div>
<div>
<h4><a href="https://blog.langdev.org/how-to-contribute-to-rustpython-with-unittest">CPython unittest를 이용해 RustPython에 기여하는 방법</a></h4>
<small><b>youknowone</b>, 2020-07-08</small>
</div>
<div>
<h4><a href="https://blog.langdev.org/emoji-hyperrealism">에모지 극사실주의</a></h4>
<small><b>lifthrasiir</b>, 2020-01-04</small>
</div>
<div>
<h4><a href="https://blog.langdev.org/nullmailer">nullmailer 설정하기</a></h4>
<small><b>sanxiyn</b>, 2019-11-22</small>
</div>
</article>
</main>