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 (112 loc) · 2.06 KB
/
style.css
File metadata and controls
129 lines (112 loc) · 2.06 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
*,
*::before,
*::after {
box-sizing: inherit;
}
h1 {
font-family: 'Bebas Neue', cursive;
justify-content: center;
align-items: center;
display: flex;
max-width: 100%;
font-size: 30px;
}
h2 {
font-family: 'Bebas Neue';
font-size: 18px;
}
p {
font-family: 'Bebas Neue', cursive;
color: black;
}
/* Hero-Header */
.header {
background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)),
url(./assets/plant.jpg);
background-repeat: no-repeat;
background-size: cover;
padding: 100px 0;
height: 60vh;
position: relative;
line-height: 0;
display: flex;
justify-content: center;
align-items: center;
}
.picture {
width: 120px;
justify-content: center;
border-radius: 50%;
-webkit-filter: grayscale(10%);
margin-bottom: 15px;
}
.profile-section {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-top: 20px;
}
.profile-section p {
color: antiquewhite;
letter-spacing: 2px;
font-weight: 400;
text-shadow: 1px 1px black;
font-size: 20px;
line-height: none;
}
.profile-section p a {
color: antiquewhite;
text-decoration: none;
line-height: 0;
}
.profile-section p a:hover {
color: #aaaaaa;
}
/* Main section */
body {
background-image: url(./assets/texture.jpg);
background-repeat: no-repeat;
background-size: cover;
line-height: 1.5;
}
#projects {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1.5rem;
margin-right: 27px;
flex-wrap: wrap;
}
.repo-card {
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 10px 10px;
padding: 15px 0;
border-radius: 20px;
line-height: 0;
background-color: antiquewhite;
}
.repo-card a {
color: black;
text-decoration: none;
}
.repo-card a:hover {
color: #aaaaaa;
}
.chart {
width: 300px;
height: 300px;
margin-left: 20px;
}
/*********Media Queries*********/
/* Desk-topview */
@media (min-width: 931px) {
.profile-section {
position: relative;
right: 120px;
top: 51px;
}
}