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
84 lines (72 loc) · 1.11 KB
/
style.css
File metadata and controls
84 lines (72 loc) · 1.11 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
body {
background: #F7D4BC;
font-family: 'Gemunu Libre', sans-serif;
}
header {
text-align: center;
font-size: 30px;
}
.profile {
align-items: center;
justify-content: center;
display: flex;
text-align:center;
color: #218380;
margin:auto;
width: 100%;
flex-direction: column;
}
img {
border-radius: 50%;
width: 200px;
margin: 15px;
box-shadow: -30px 30px 30px rgba(0, 0, 0, 0.3);
}
p {
color: #AD5D4E;
}
.projects {
flex-direction: column;
display: block;
border-style: solid;
color: #AD5D4E;
margin: 5px;
text-align: center;
}
.chart-class {
width: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: auto;
cursor: pointer;
}
h4 {
font-size: 25px;
margin: 5px;
font-weight: bolder;
}
a {
font-size: 18px;
color: #218380;
}
a:hover {
color:#74a09f;
}
@media (min-width: 668px){
main {
text-align: center;
flex-direction: row;
}
.projects {
display: inline-block;
text-align: center;
padding: 5px;
width: 33%;
height: 50%;
}
.chart-class {
width: 40%;
margin-top: 20px;
}
}