-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
87 lines (74 loc) · 1.44 KB
/
Copy pathstyle.css
File metadata and controls
87 lines (74 loc) · 1.44 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
:root {
--primary: #6c5ce7;
--bg: #ffffff;
--text: #2d3436;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Georgia', serif;
}
body {
background-color: var(--bg);
color: var(--text);
line-height: 1.8;
}
.scroll-header {
position: fixed;
top: 0;
z-index: 100;
width: 100%;
background-color: #fff;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 10%;
font-family: 'Inter', sans-serif;
}
.logo { font-weight: 800; font-size: 1.5rem; color: var(--primary); }
.read-status { font-size: 0.9rem; color: #777; }
.progress-container {
width: 100%;
height: 4px;
background: #eee;
}
.progress-bar {
height: 4px;
background: var(--primary);
width: 0%;
box-shadow: 0 0 10px var(--primary);
}
.content {
max-width: 800px;
margin: 120px auto 100px;
padding: 0 20px;
}
.content h1 {
font-size: 3.5rem;
line-height: 1.2;
margin-bottom: 10px;
font-family: 'Inter', sans-serif;
}
.subtitle {
font-size: 1.2rem;
color: #636e72;
margin-bottom: 50px;
font-family: 'Inter', sans-serif;
}
.text-block p {
margin-bottom: 30px;
font-size: 1.25rem;
}
.text-block h2 {
margin: 50px 0 20px;
font-family: 'Inter', sans-serif;
}
.text-block img {
width: 100%;
border-radius: 12px;
margin-bottom: 30px;
}