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
98 lines (81 loc) · 1.35 KB
/
style.css
File metadata and controls
98 lines (81 loc) · 1.35 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
@import url('https://fonts.googleapis.com/css2?family=Nunito');
html {
scroll-behavior: smooth;
}
body {
background: rgb(130, 60, 60);
font-family: 'Nunito', sans-serif;
margin: 0 auto;
}
h1 {
font-size: 1.4rem;
}
h2 {
font-size: 1.2rem;
text-align: center;
}
h3 {
text-align: center;
background-color: rgba(130, 60, 60, 0.2);
border-radius: 0.4rem;
margin-top: 0;
padding: 1rem 0rem;
}
#profile-wrapper {
display: block;
text-align: center;
}
#profile {
display: inline-block;
justify-content: center;
}
.profile-image {
display: inline-block;
width: 160px;
height: 160px;
border-radius: 50%;
border: 2px solid whitesmoke;
overflow: hidden;
margin-bottom: 0;
}
.profile-image > a > img {
width: 100%;
}
#projects {
display: flex;
flex-flow: row wrap;
justify-content: center;
gap: 1rem;
margin-bottom: 1rem;
}
.projects-card {
width: 320px;
background-color: #f2f2f2;
box-shadow: rgba(0, 0, 0, 0.6) 0 0.065rem 0.25rem;
border-radius: 0.4rem;
padding: 1rem;
}
#chart-wrapper {
width: 90vw;
max-width: 512px;
margin: 0 auto;
}
header {
position: sticky;
top: 0;
}
footer {
margin-top: 1rem;
}
header, footer {
background-color: #f2f2f2;
text-align: center;
padding: 1rem 0rem;
width: 100%;
}
footer, a {
color: rgb(130, 60, 60)
}
footer > p > a {
text-decoration: none;
}