-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (51 loc) · 838 Bytes
/
style.css
File metadata and controls
61 lines (51 loc) · 838 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
59
60
61
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: system-ui, -apple-system, sans-serif;
line-height: 1.5;
color: #000;
background: #fff;
padding: 2rem;
}
main {
max-width: 600px;
margin: 0 auto;
}
h1 {
font-size: 2rem;
margin-bottom: 1.5rem;
}
.modules {
list-style: none;
}
.modules li {
margin-bottom: 1rem;
}
.modules a {
display: block;
padding: 1rem;
border: 1px solid #000;
text-decoration: none;
color: #000;
background: #fff;
transition: background 0.2s;
}
.modules a:hover {
background: #f0f0f0;
}
.module-title {
font-weight: bold;
font-size: 1.25rem;
margin-bottom: 0.25rem;
}
.module-description {
color: #666;
font-size: 0.9rem;
}
.intro {
margin-bottom: 2rem;
color: #333;
}