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
100 lines (83 loc) · 1.48 KB
/
style.css
File metadata and controls
100 lines (83 loc) · 1.48 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
99
100
body {
background: white;
color: rgb(13, 18, 46);
margin: 0;
font-family: 'Poppins', sans-serif;
}
/* Mobile-first design approach*/
.nav {
display: flex;
justify-content: center;
text-transform: uppercase;
margin-bottom: 50px;
font-size: 20px;
color: grey;
}
.chart-section {
display: flex;
justify-content: center;
margin-bottom: 25px;
}
.chart {
height: 25vh;
width: 25vw;
}
main {
display: grid;
grid-template-columns: repeat(1, 1fr);
}
.projectSection {
width: 100vw;
}
.projectSection article {
background-color: black;
color: white;
font-weight: bold;
border: 1px solid rgb(76, 81, 105);
border-radius: 3%;
margin: 10px;
padding: 10px;
word-wrap: break-word;
}
.pull-commit-section {
background-color: rgb(76, 81, 105);
color: white;
border-radius: 3%;
margin: 10px;
padding: 10px;
word-wrap: break-word;
}
header section {
display: flex;
justify-content: center;
margin-bottom: 80px;
}
header section img {
margin-right: 30px;
border-radius: 50%;
}
@media only screen and (min-width: 768px) {
.projectSection{
display: grid;
}
.projectSection article {
grid-template-columns: repeat(2, 1fr);
border-radius: 5%;
}
.projectSection section {
grid-column: span 2;
}
.chart {
width: 30vw;
margin-left: 150px;
}
main {
grid-template-columns: repeat(2, 1fr);
}
}
@media only screen and (min-width: 1025px) {
.chart {
width: 20vw;
margin-left: 5px;
}
}