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
78 lines (63 loc) · 921 Bytes
/
style.css
File metadata and controls
78 lines (63 loc) · 921 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
70
71
72
73
74
75
76
77
78
*{box-sizing: border-box;
text-align: center;
}
body {
background:black;
font-family: 'Roboto', sans-serif;
}
h1 {
color:rgb(226, 176, 9)
}
h2 {
color: white
}
h3 {
color:rgb(226, 176, 9)
}
h5{
color: #1e7699;
font-size: 18px;
font-style: italic;
}
p {
color: black;
}
img {
border-radius: 50%;
height: 200px;
width: 200px;
}
.card {
background-color: #1e7699;
width: 300px;
padding-top: 25px;
padding-bottom: 20px;
margin: auto;
border-radius: 7px;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
background-color: transparent;
text-decoration: underline;
}
.chart {
width: 250px;
height: 250px;
margin: auto;
padding-top: 50px;
}
.project-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
grid-gap: 1.5rem;
}
footer {
background: black;
padding: 10px;
margin-top: 20px;
}