-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
100 lines (87 loc) · 1.49 KB
/
Copy pathstyle.css
File metadata and controls
100 lines (87 loc) · 1.49 KB
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
* {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
background: #080808;
color: #d6d6d6;
font-family: 'VT323', monospace;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 24px;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
max-width: 720px;
width: 100%;
}
h1 {
margin: 0;
font-size: clamp(2.2rem, 5vw, 3.6rem);
font-weight: 400;
color: #f0f0f0;
line-height: 1;
}
.subtitle {
margin: 0;
font-size: 1.3rem;
color: #8a8a8a;
}
.links {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 6px;
font-size: 1.3rem;
}
.links a {
color: #8a8a8a;
text-decoration: none;
transition: color 0.15s ease;
}
.links a:hover {
color: #f0f0f0;
}
.links span {
color: #555;
user-select: none;
}
.divider {
width: 100%;
max-width: 420px;
height: 1px;
background: linear-gradient(
to right,
transparent,
rgba(255,255,255,0.15),
transparent
);
margin: 12px 0;
}
.project {
margin: 0;
font-size: 1.3rem;
color: #7a7a7a;
}
h1 {
position: relative;
display: inline-block;
}
h1::after {
content: '_';
opacity: 1;
animation: blink 1.2s step-end infinite;
font-weight: normal;
margin-left: 2px;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}