-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
91 lines (80 loc) · 1.38 KB
/
style.css
File metadata and controls
91 lines (80 loc) · 1.38 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #0f0f0f;
color: #e0e0e0;
font-family: system-ui, sans-serif;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
}
.page {
width: min(560px, 100%);
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
}
h1 {
font-size: 1.2rem;
font-weight: 600;
letter-spacing: 0.08em;
}
.subtitle {
font-size: 0.9rem;
opacity: 0.6;
letter-spacing: 0.04em;
}
.hero {
width: min(100%, 360px);
border-radius: 12px;
border: 1px solid #2c2c2c;
}
.panel {
width: 100%;
background: #1a1a1a;
border: 1px solid #2f2f2f;
border-radius: 14px;
padding: 14px;
display: flex;
flex-direction: column;
gap: 10px;
}
.panel h2 {
font-size: 0.78rem;
font-weight: 600;
letter-spacing: 0.1em;
opacity: 0.6;
text-transform: uppercase;
text-align: center;
}
.item-link {
display: block;
text-decoration: none;
text-align: center;
color: #e0e0e0;
border: 1px solid #444;
border-radius: 999px;
background: #171717;
padding: 10px 12px;
transition: border-color 0.2s, background-color 0.2s;
}
.item-link:hover,
.item-link:focus-visible {
border-color: #4caf50;
background: #1a2e1a;
outline: none;
}
.item-link:visited {
color: #e0e0e0;
}
.meta {
text-align: center;
opacity: 0.78;
font-size: 0.92rem;
}