-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (52 loc) · 967 Bytes
/
style.css
File metadata and controls
58 lines (52 loc) · 967 Bytes
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
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background: linear-gradient(180deg, #f4f6f8, #eaeef3);
margin: 0;
padding: 2rem 1rem;
color: #222;
}
a {
color: #4f7cff;
font-weight: 500;
text-decoration: none;
}
a::after {
content: " →";
opacity: 0;
transition: opacity 0.2s ease;
}
li:hover a::after {
opacity: 1;
}
a:hover {
text-decoration: underline;
}
ul {
list-style: none;
padding: 0;
margin-top: 1rem;
}
li {
padding: 0.75rem 1rem;
margin-bottom: 0.6rem;
background: #f7f9fc;
border-radius: 8px;
display: flex;
align-items: center;
transition: all 0.2s ease;
}
li:hover {
background: #eef3ff;
transform: translateX(4px);
}
h1 {
font-size: 2rem;
margin-bottom: 0.5rem;
}
h2 {
margin-top: 2rem;
font-size: 1.3rem;
color: #333;
border-left: 4px solid #4f7cff;
padding-left: 0.6rem;
}