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
108 lines (87 loc) · 1.59 KB
/
style.css
File metadata and controls
108 lines (87 loc) · 1.59 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
103
104
105
106
107
108
body {
background: rgb(163, 211, 198);
}
.title {
font-family: 'Archivo Black', sans-serif;
font-size: 1.6rem;
text-align: center;
}
h2, p, button {
font-family: 'Roboto', sans-serif;
}
.profile-img {
border-radius: 50%;
max-width: 200px;
}
button {
font-size: 1.3rem;
border: 1px solid #95dcbe;
border-radius: 8px;
padding: 14px;
box-shadow: 0 0.2rem 1.2rem rgba(22, 23, 23, 0.2);
transition-duration: 0.4s;
}
button:hover {
background-color: #f5cbe6;
color: white;
}
.main-container .title {
margin: 0 auto;
display: grid;
grid-template-columns: repeat(6, 1fr);
align-items: center;
}
.profile-container {
display: grid;
grid-column: span 6;
justify-items: center;
padding-bottom: 2rem;
}
.projects-container {
display: grid;
grid-column: span 6;
grid-gap: 2rem;
margin: 50px auto;
}
.chart-container {
display: grid;
grid-column: span 6;
justify-items: center;
margin: 5% auto;
width: 300px;
}
.card {
background: #fff;
text-align:center;
padding: 1.5rem;
box-shadow: 0 0.2rem 1.2rem rgba(22, 23, 23, 0.2);
transform: translateY(0);
position: relative;
}
.card a {
text-decoration: none;
color: inherit;
}
.card:hover,
.card:focus,
.card:active {
filter: none;
box-shadow: 0 4px 5px rgba(0,0,0,0.2);
color: #95dcbe;
}
@media (min-width: 768px) {
.profile-container {
grid-column: span 3;
}
.chart-container {
grid-column: span 3;
}
.projects-container {
grid-template-columns: 1fr 1fr;
}
}
@media (min-width: 992px) {
.projects-container {
grid-template-columns: repeat(3, 1fr);
}
}