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
62 lines (50 loc) · 870 Bytes
/
style.css
File metadata and controls
62 lines (50 loc) · 870 Bytes
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
* {
box-sizing: border-box;
}
html {
font-family: "Montserrat", sans-serif;
border: 0;
padding: 0;
margin: 0;
}
body {
display: grid;
justify-content: center;
background-color: #3F72AF;
}
.main {
display: grid;
height: auto;
text-align: center;
justify-content: center;
row-gap: 1em;
}
.projects-container {
display: grid;
gap: 1rem;
}
.projects, .profile, .chart {
background-color: whitesmoke;
border-radius: 3%;
align-items: center;
margin: 10px;
padding: 10%;
}
.profile_picture {
border-radius: 50%;
width: 50%;
}
a, a:visited, a:hover, a:active {
color: #3F72AF;
}
p, h1, a {
color: #3F72AF;
}
@media (min-width: 668px) {
.projects-container {
grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1080px) {
.projects-container {
grid-template-columns: repeat(3, 1fr);
}