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
45 lines (37 loc) · 670 Bytes
/
style.css
File metadata and controls
45 lines (37 loc) · 670 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
* {
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
body {
background: #39c440;
font-family:Verdana, Geneva, Tahoma, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
max-height: 100vh
}
.repo-card {
padding-left: 10px;
border-style: dashed;
}
h1 {
display: flex;
width: 100%;
margin: auto;
margin-top: 10%;
justify-content: center;
font-family:Verdana, Geneva, Tahoma, sans-serif
}
.chart {
width: 50%;
height:50%;
}
.profile {
justify-content: center;
}
.photo {
width: 100%
}