-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.css
More file actions
102 lines (85 loc) · 1.65 KB
/
portfolio.css
File metadata and controls
102 lines (85 loc) · 1.65 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
101
102
/* hub.css — minimal project index */
@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
background: #0D1117;
color: #E6EDF3;
font-family: 'DM Mono', monospace;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
-webkit-font-smoothing: antialiased;
}
.container {
width: 100%;
max-width: 620px;
}
.hub-label {
font-size: 11px;
letter-spacing: 0.1em;
text-transform: uppercase;
color: #484F58;
margin-bottom: 1.5rem;
}
.hub-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 1px;
}
.hub-list a {
display: flex;
align-items: center;
justify-content: space-between;
padding: 14px 16px;
border: 0.5px solid rgba(255, 255, 255, 0.08);
border-radius: 8px;
color: #E6EDF3;
text-decoration: none;
font-size: 13px;
background: #161B22;
transition: border-color 0.12s ease, background 0.12s ease;
}
.hub-list a:hover {
border-color: rgba(255, 255, 255, 0.2);
background: #1A2030;
}
.left {
display: flex;
align-items: center;
gap: 12px;
}
.num {
font-size: 11px;
color: #484F58;
min-width: 18px;
}
.title {
color: #E6EDF3;
}
.right {
display: flex;
align-items: center;
gap: 10px;
}
.tag {
font-size: 10px;
color: #8B949E;
padding: 2px 7px;
border: 0.5px solid rgba(255, 255, 255, 0.08);
border-radius: 4px;
}
.arrow {
font-size: 12px;
color: #484F58;
}
.hub-footer {
margin-top: 1.5rem;
font-size: 11px;
color: #484F58;
}
@media (max-width: 480px) {
.tag { display: none; }
}