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
69 lines (59 loc) · 851 Bytes
/
style.css
File metadata and controls
69 lines (59 loc) · 851 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
66
67
68
69
body {
background: grey;
font-family: 'Bebas Neue', cursive;
margin: 1rem;
}
header {
background-color: lightgrey;
border-radius: 180%;
color: black;
text-align: center;
}
h1 {
font-size: 40px;
text-align: center;
}
h2 {
font-size: 40px;
text-align: center;
}
h3 {
font-size: 20px;
text-align: center;
}
/*Image*/
img {
width: 200px;
border-radius: 50%;
padding: 2rem;
}
a {
color: black;
}
.profile {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
margin-left: auto;
margin-right: auto;
width: 50%;
}
.forkedrepo-div {
border: black solid;
padding: 1rem;
margin: 2rem;
}
/* THE CHART SECTION */
#chart-wrapper {
width: 90%;
margin: 20px auto 40px;
}
#chart {
padding: 20%;
}
/* This is styling for the footer*/
footer {
background-color: darkgrey;
text-align: center;
}