blob: fdea931629c61c8df45bfcf07c2a74fe0303aa7e (
plain)
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
|
---
---
* {
box-sizing: border-box;
}
:root {
--factor: 1;
}
body {
margin: 0;
background-color: antiquewhite;
}
.wrapper {
position: relative;
height: 100vh;
width: 100%;
overflow: hidden;
background-color: white;
}
.start {
position: absolute;
width: 1080px;
height: 1080px;
// background-color: red;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(var(--factor));
transform-origin: center center;
}
.face {
background-image: url(/assets/face.jpg);
background-size: contain;
border-radius: 50%;
margin: 64px auto;
width: 256px;
height: 256px;
}
.terminal {
background-color: #1E1E1E;
width: 788px;
height: 454px;
margin: 128px auto;
margin-bottom: 16px;
border-radius: 8px;
color: white;
padding: 16px;
font-family: 'Roboto Mono', monospace;
box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}
.down-arrow {
display: block;
text-align: center;
font-size: 128px;
color: #636363;
opacity: 0;
}
.down-arrow.show {
animation: down 2s infinite;
}
@keyframes down {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
.content {
font-family: 'Roboto Mono', monospace;
font-size: 24px;
max-width: 800px;
min-height: 100vh;
margin: 0 auto;
padding: 64px;
}
|