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 (74 loc) · 1.43 KB
/
Copy pathstyle.css
File metadata and controls
85 lines (74 loc) · 1.43 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: content-box;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
body {
background: rgb(250, 238, 231);
font-family: 'roboto', sans-serif;
}
.user-container img {
width: 250px;
display: grid;
grid-template-columns: 1, 1fr;
justify-items: center;
place-items: center;
margin: 15px;
border-style: inset;
border-width: 4px;
border-color:rgb(50, 82, 136);
}
.user-container a {
margin: 10px;
color:black;
text-decoration: none;
display: grid;
grid-template-columns: 1, 1fr;
justify-items: center;
place-items: center;
margin-bottom: 35px;
}
.repo-container {
display: grid;
grid-template-columns: 1, 1fr;
justify-items: center;
place-items: center;
grid-gap: 40px;
margin-bottom: 55px;
}
.repo-container a {
text-decoration: none;
color:rgb(36, 161, 156);
}
.chart {
max-width: 350px;
max-height: 350px;
}
.chart-container {
display: grid;
place-items: center;
margin-top: 25px;
}
@media (min-width: 668px) {
.repo-container {
grid-template-columns: repeat(2, 1fr);
justify-items: center;
place-items: center;
}
}
@media (min-width: 1024px) {
.repo-container {
grid-template-columns: repeat(3, 1fr);
}
.user-container img:hover {
border-color:rgb(217, 96, 152);
}
.repo-container a:hover {
background-color: black;
color: rgb(217, 96, 152);
}
}