-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
108 lines (90 loc) · 1.54 KB
/
style.css
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
*,
:after,
:before {
box-sizing: border-box;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
color: #24292e;
}
header {
background-color: #24292e;
color: white;
padding: 2rem 0;
text-align: center;
}
nav {
background-color: #f6f8fa;
padding: 1rem 0;
border-bottom: 1px solid #e1e4e8;
}
nav ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
gap: 2rem;
}
nav a {
color: #24292e;
text-decoration: none;
font-weight: 500;
}
nav a:hover {
color: #0366d6;
}
main {
max-width: 800px;
margin: 2rem auto;
padding: 0 1rem;
}
.project-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
margin-top: 2rem;
}
.project-card {
border: 1px solid #e1e4e8;
border-radius: 6px;
padding: 1rem;
background-color: white;
}
.project-card h3 {
margin-top: 0;
color: #0366d6;
}
footer {
background-color: #f6f8fa;
border-top: 1px solid #e1e4e8;
padding: 2rem 0;
text-align: center;
margin-top: 2rem;
}
.social-links {
margin-top: 1rem;
}
.social-links a {
margin: 0 0.5rem;
color: #24292e;
text-decoration: none;
}
.social-links a:hover {
color: #0366d6;
}