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
85 lines (72 loc) · 1.15 KB
/
style.css
File metadata and controls
85 lines (72 loc) · 1.15 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
* {
box-sizing: border-box;
margin: 0;
}
body {
background: #ffece9;
font-family: "Source Serif Pro", serif;
background-image: linear-gradient(#ccccff, #ffff);
}
header {
display: grid;
justify-items: center;
}
/* header text */
h1 {
margin: 0.5rem;
color: #ffffff;
font-size: 3rem;
}
/* description text */
h3 {
margin: 0.5rem;
color: #ffffff;
}
.username {
font-size: 25px;
}
.my-name {
font-size: 35px;
}
img {
width: 300px;
border-radius: 50%;
margin-block: 2em;
}
/* link to my github and repos */
a,
a:active {
text-decoration: none;
}
a.nav-link,
a.nav-link:active {
position: relative;
color: black;
}
.section-projects__container {
padding: 2em 0;
min-height: 100%;
display: grid;
gap: 1em;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
justify-content: center;
justify-items: center;
}
.section-projects__card {
background: #f9f8ff;
border-radius: 0.5em;
width: 300px;
padding: 1em;
margin: 1em;
display: flex;
flex-direction: column;
justify-content: space-between;
}
canvas {
margin: 2rem;
}
@media screen and (min-width: 768px) {
.chart {
max-height: 60vh;
}
}