-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshared.css
More file actions
90 lines (79 loc) · 1.88 KB
/
Copy pathshared.css
File metadata and controls
90 lines (79 loc) · 1.88 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
:root {
--primary-color: #2980b9;
--secondary-color: #2c3e50;
--accent-color: #e67e22;
--bg-color: #f8f9fa;
--text-color: #34495e;
--white: #ffffff;
--border-radius: 10px;
--shadow: 0 4px 15px rgba(0,0,0,0.05);
--font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
body {
font-family: var(--font-main);
background-color: var(--bg-color);
color: var(--text-color);
line-height: 1.8;
margin: 0;
padding: 0;
}
.nav-bar {
background-color: var(--secondary-color);
color: var(--white);
padding: 1.5rem 3rem;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.nav-bar a {
color: var(--white);
text-decoration: none;
margin-left: 1.5rem;
font-weight: 600;
transition: color 0.3s ease;
}
.nav-bar a:hover {
color: var(--accent-color);
}
.container {
max-width: 800px;
margin: 3rem auto;
padding: 3rem;
background: var(--white);
border-radius: var(--border-radius);
box-shadow: var(--shadow);
border: 1px solid rgba(0,0,0,0.05);
}
h1, h2, h3 {
color: var(--secondary-color);
margin-top: 2rem;
margin-bottom: 1rem;
font-weight: 700;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
p, ul, li {
margin-bottom: 1.2rem;
}
.nav-links {
text-align: right;
margin-top: 3rem;
padding-top: 2rem;
border-top: 1px solid #eee;
}
.next-button {
display: inline-block;
background-color: var(--primary-color);
color: var(--white);
padding: 0.75rem 1.5rem;
border-radius: var(--border-radius);
text-decoration: none;
font-weight: 600;
transition: background-color 0.3s ease, transform 0.2s ease;
}
.next-button:hover {
background-color: var(--secondary-color);
transform: translateY(-2px);
}