-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (53 loc) · 1.41 KB
/
Copy pathstyle.css
File metadata and controls
61 lines (53 loc) · 1.41 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
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: system-ui, sans-serif;
color: black; /* FIX 2: missing semicolon added */
background-color: #ffffff; /* FIX 3: "#white" is invalid → "#ffffff" */
}
nav {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
padding: 0.5rem;
gap: 0.5rem;
border-bottom: solid 1px #aaa;
background-color: #eee;
}
nav a {
display: inline-block;
min-width: 9rem;
padding: 0.5rem;
border-radius: 0.2rem;
border: solid 1px rgb(22, 22, 22);
text-align: center; /* FIX 4: missing semicolon added */
text-decoration: none;
color: #b1b1b1;
}
nav a[aria-current='page'] {
background-color: #d4d4d4;
color: #000;
}
main {
padding: 1rem;
}
h1 {
font-weight: bold;
font-size: 1.5rem;
}
.projects { /* FIX 5: ".PROJECTS" → ".projects" (case fixed) */
display: flex;
flex-direction: column;
}
.projects-link { /* FIX 6: ".ProJECTS-link" → ".projects-link" (case fixed) */
background-color: #fff;
padding: 10px 30px; /* FIX 7: "30x" → "30px" (invalid unit) */
border-radius: 8px;
color: #212121; /* FIX 8: missing semicolon + "#212212" → "#212121" (typo) */
text-decoration: none;
border: 2px solid #212121;
margin-bottom: 5px;
}