-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (49 loc) · 771 Bytes
/
style.css
File metadata and controls
59 lines (49 loc) · 771 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
body {
margin: 0 auto;
font-family: 'Titillium Web', sans-serif;
}
#projects {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.repo-card {
max-width: 250px;
margin-bottom: 30px;
border: 1px solid #776c6c42;
}
.repo {
padding: 20px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.repo a {
color: inherit;
}
#chart {
margin: 20px 0;
}
.profile-card {
display: flex;
flex-direction: column;
max-width: 250px;
margin: 0 auto;
}
.profile-details {
display: flex;
flex-direction: column;
text-align: center;
}
.profile-details img {
width: 100%;
border-radius: 30%;
}
h1, h2 {
text-align: center;
}
@media (min-width: 530px) {
#projects {
justify-content: space-between;
}
}