-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
65 lines (52 loc) · 834 Bytes
/
Copy pathstyles.css
File metadata and controls
65 lines (52 loc) · 834 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
62
63
64
65
body {
padding: 2rem 0;
}
.hero {
text-align: center;
margin-bottom: 3rem;
}
.hero h1 {
margin-bottom: 1rem;
}
.hero p {
font-size: 1.2rem;
color: var(--muted);
}
[class*="col-"] {
padding: 0.75rem;
}
.project-card {
height: 100%;
padding: 1.5rem;
}
.project-card h4 {
margin-top: 0;
color: var(--secondary);
}
.project-card .badge {
margin-right: 0.5rem;
margin-bottom: 0.5rem;
}
.tech-section {
margin-top: 3rem;
}
.tech-item {
margin-bottom: 2rem;
}
.tech-item h4 {
color: var(--success);
}
.button-group {
margin-top: 1rem;
}
.button-group a {
margin-right: 0.5rem;
margin-bottom: 0.5rem;
display: inline-block;
}
footer {
text-align: center;
margin-top: 4rem;
padding-top: 2rem;
border-top: 2px dashed var(--primary);
}