forked from Technigo/project-github-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (42 loc) · 653 Bytes
/
Copy pathstyle.css
File metadata and controls
53 lines (42 loc) · 653 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
body {
background: #ffe573;
font-family: 'arial', 'sans-serif';
}
h1 {
display: grid;
justify-content: center;
}
img {
width: 10%;
min-width: 200px;
border: 3px solid black;
}
a {
color: black;
}
.photobox {
display: grid;
justify-items: center;
}
.reposbox {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 1fr;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.projects {
display: grid;
justify-items: center;
margin: 30px;
background-color: beige;
}
h3 {
font-size: 18px;
}
.chartbox {
display: grid;
justify-items: center;
}
canvas {
max-width: 500px;
}