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
102 lines (85 loc) · 1.41 KB
/
style.css
File metadata and controls
102 lines (85 loc) · 1.41 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
101
102
body {
background: #ffece9;
font-family: "Montserrat";
color: whitesmoke;
background-color: black;
text-align: center;
display: grid;
grid-template-columns: 1fr;
}
.header {
margin-top: 30px;
margin-bottom: 40px;
}
.user-name {
color: rgb(135, 133, 133);
text-decoration: none;
}
.user-name:hover {
color: whitesmoke;
}
.profile_picture {
width: 100px;
border-radius: 4cm;
margin-top: 25px;
}
.pie-chart {
width: 50%;
margin-top: 40px;
margin-left: 25%;
}
.project-container {
display: flex;
flex-direction: column;
width: 50%;
margin-left: 25%;
text-align: left;
color: whitesmoke;
font-size: 0.3cm;
}
.items {
background-color: #1a1b1a;
margin-bottom: 15px;
padding: 25px;
border-radius: 0.3cm;
}
.logo {
height: 100px;
margin-right: 10px;
}
.git-logo {
height: 50px;
border-radius: 1cm;
margin-left: 10px;
margin-bottom: 35px;
}
.footer {
margin-top: 30px;
margin-bottom: 0;
align-items: flex-end;
}
/*tablet menu*/
@media (min-width: 768px) {
.project-container {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 20px;
justify-content: center;
}
}
/*big screen menu*/
@media (min-width: 992px) {
.profile_picture {
width: 250px;
}
.pie-chart {
margin-top: 0;
}
.userChart {
display: grid;
grid-template-columns: 1fr 1fr;
}
.project-container {
grid-template-columns: 1fr 1fr 1fr;
}
}