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 (69 loc) · 1.15 KB
/
style.css
File metadata and controls
78 lines (69 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
body {
background: #11130d;
font-family: 'Zilla Slab', serif;
display: flexbox;
}
h1{
font-family: 'Galada', cursive;
font-size: 65pt;
text-align: center;
text-shadow: 6px 5px rgb(151, 31, 71);
margin-bottom: -2rem;
color: rgb(216, 83, 128);
}
h3{
font-size: 35pt;
text-align: center;
color: rgb(216, 83, 128);
}
.profile-box {
display: flex;
align-items: center;
flex-direction: column;
width: 90%;
margin: 0 auto;
color: rgb(216, 83, 128);
}
.profile-image {
border-radius: 50%;
width: 290px;
align-content: center;
border: 6px solid rgb(216, 83, 128);
}
.projects {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
}
.repo-card {
display: flexbox;
margin: 2rem;
border-radius: 1rem;
padding: 1rem;
background-color:rgb(216, 83, 128)
}
.chart-size{
height: 500px;
width: 500px;
padding: 3rem;
justify-content: space-evenly;
}
@media (max-width: 624px) {
h1{
font-size: 30pt;
}
.profile-image {
width: 190px;
}
.h3 {
font-size: 20pt
}
.repo-card {
margin-left: 5rem;
margin-right: 5rem;
}
.chart-size{
height: 250px;
width: 250px;
}
}