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
110 lines (95 loc) · 1.65 KB
/
style.css
File metadata and controls
110 lines (95 loc) · 1.65 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
109
110
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #e2e7e8;
font-family: "Oxygen", sans-serif;
}
.title {
background-image: url(./bakgrund.jpeg) ;
background-position: left bottom;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
position: relative;
height: 220px;
width: 100%;
display: grid;
justify-content: center;
align-items: center;
padding: 5%;
font-size: 1.4rem;
text-align: center;
}
main {
display: flex;
flex-direction: column;
justify-content: center;
}
.user-container {
display: grid;
grid-template-columns: 1fr;
justify-content: center;
background-color: rgba(148,182,165,0.8);
}
.user-image {
max-width: 20vw;
border-radius: 100%;
padding-top: 20px;
}
.user-img {
display: flex;
justify-content: center;
padding-top: 10px;
}
.user-info {
display: grid;
padding-bottom: 40px;
justify-items: center;
}
.projects {
color: black;
display: inline-grid;
grid-template-columns: 1fr;
justify-items: center;
padding: 5%;
}
.repocard {
display: block;
align-items: center;
text-align: center;
padding: 20px;
margin: 10px;
width: 100%;
background-color: rgba(148,182,165,0.1);
}
.repocard a {
text-decoration: none;
color: gray
}
a:hover {
color: darkgreen;
}
.chart-wrapper {
display: grid;
justify-items: center;
width: 100%;
background-color: rgba(148,182,165,0.5);
}
.chart-container {
display: grid;
justify-items: center;
padding: 5%;
max-width: 450px;
}
@media (min-width: 769px) {
.projects {
grid-template-columns: 1fr 1fr;
column-gap: 25px;
}
.title {
font-size: 1.9rem;
}
}