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
129 lines (110 loc) · 2.08 KB
/
style.css
File metadata and controls
129 lines (110 loc) · 2.08 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
html {
box-sizing: border-box;
}
body {
background: rgb(63, 94, 251);
background: radial-gradient(
circle,
rgb(103, 128, 252) 0%,
rgb(245, 95, 125) 100%
);
display: flex;
flex-direction: column;
color: black;
font-family: "Source Code Pro", monospace;
}
header {
display: flex;
justify-content: space-around;
align-items: center;
}
.github-img {
width: 40px;
height: 40px;
}
a {
font-size: 18px;
color: rgb(117, 35, 252);
}
a:hover {
color: pink;
}
.info-container {
display: flex;
flex-direction: column;
justify-content: center;
margin: 0px;
padding-top: 20px;
/* background-color: rgb(253, 249, 246);
opacity: 0.8; */
}
.user-img {
width: 30%;
height: 30%;
border-radius: 50%;
border: whitesmoke solid 1px;
align-self: center;
}
.user-info {
display: flex;
flex-direction: column;
align-items: center;
}
#projects {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
column-gap: 1rem;
row-gap: 1rem;
margin: 30px 0px 30px 0px;
}
.project-container {
background: rgb(253, 249, 246);
opacity: 0.75;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
padding: 10px 0px 10px 20px;
}
.project-container:hover {
background: rgb(253, 249, 246);
opacity: 0.95;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
padding: 10px 0px 10px 20px;
}
footer {
display: flex;
justify-content: space-between;
align-items: center;
height: 50px;
}
.footer-link {
color: white;
}
.footer-logo {
width: 75px;
}
/* ---------- media queries desktop ---------- */
@media (min-width: 1025px) {
.info-container {
display: flex;
flex-direction: row;
justify-content: center;
}
.user-img {
width: 20%;
}
#projects {
grid-template-columns: repeat(auto-fit, minmax(400px, 2fr));
max-width: 80%;
align-self: center;
margin-top: 60px;
}
.chart-container {
align-self: center;
width: 35%;
}
}