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
68 lines (58 loc) · 1.11 KB
/
style.css
File metadata and controls
68 lines (58 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
* {
box-sizing: border-box;
text-align: center;
}
body {
background: #346751;
font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
color: #ffffff;
margin: 0;
}
header {
text-align: center;
position: absolute;
background-color: #161616;
margin-bottom: 30px;
width: 100%;
}
img {
border-radius: 50%;
border: 2px solid #161616;
margin-top: 100px;
}
.chart {
width: 200px;
height: 200px;
margin: auto;
}
fieldset {
border-color: #161616;
}
.links {
color: #161616;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.repo-items {
padding: 20px;
margin: 10px;
box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px,
rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px,
rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}
/* Tablet */
@media (min-width: 668px) and (max-width: 1024px) {
.projects {
display: grid;
grid-template-columns: auto auto;
}
}
/* Desktop */
@media (min-width: 1025px) {
.projects {
display: grid;
grid-template-columns: auto auto auto;
}
}