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
import { typingcliStyles } from 'https://esm.town/v/iamseeley/typingcliStyles';
export const helloResume = `
body {
padding: 5px;
margin-top: 32px;
background-color: #2c3e50;
font-family: 'Arial', sans-serif;
color: #ecf0f1;
}
@media (min-width: 640px) {
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
}
p {
margin-top: 8px;
line-height: 1.6;
color: #bdc3c7;
}
a {
color: inherit;
}
.container {
background-color: #34495e;
border-radius: 12px;
padding: 20px;
margin-left: 12px;
margin-right: 12px;
position: relative;
max-width: 600px;
text-align: left;
}
@media (min-width: 640px) {
.container {
background-color: #34495e;
border-radius: 12px;
padding: 20px;
margin-left: 32px;
margin-right: 32px;
position: relative;
}
}
.header {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.time {
font-size: 0.9em;
color: #bdc3c7;
}
.content {
margin-top: 20px;
}
.typewriter {
font-size: 1.1em;
color: #ecf0f1;
}
.typewriter span {
padding-right: 2px;
border-right: 1px solid #ecf0f1;
white-space: nowrap;
overflow: hidden;
}
.features {
margin-top: 20px;
}
.scrollable-container {
display: flex;
flex-direction: row;
gap: 10px;
flex-wrap: wrap;
padding: 10px 0;
}
.feature-item {
display: flex;
background-color: #ecf0f1;
color: #2c3e50;