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
94 lines (79 loc) · 1.39 KB
/
style.css
File metadata and controls
94 lines (79 loc) · 1.39 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
body {
background-color: black;
/* background-image: url('../Images/chalkboard-background.jpg');
background-repeat: no-repeat; */
width: 100%;
font-family: 'Gochi Hand', cursive;
/* font-family: 'Shadows Into Light', cursive; */
color: #fbf7f5;
letter-spacing: 0.3em;
}
p {
font-size: 24px;
font-weight: bold;
color: #e9c9d1;
}
a {
color: #f5f9ad;
text-decoration: none;
border-bottom: 4px solid #f5f9ad;
border-radius: 5px;
}
/* Heading */
.heading {
display: inline;
text-align: center;
font-size: 30px;
}
/* Info from GibHub profile */
.profile-info {
width: 70%;
margin: 10px auto;
text-align: center;
color: #bcdf8a;
}
.profile-image {
width: 28px;
height: 28px;
border-radius: 25px;
bottom: 0;
}
.profile-name {
font-size: 28px;
}
/* Projects/repos */
.repo-card {
width: 80%;
margin: 10px auto;
padding: 5px;
border: 10px solid rgba(255, 255, 255, 0.8);
border-image: url('https://www.unicefusa.org/sites/default/files/answer-box.png')
25;
padding: 5px;
}
/* grid */
/* responsive (mobile first) */
@media (min-width: 768px) {
.projects-container {
display: grid;
grid-template-columns: 1fr 1fr;
grid-auto-rows: max-content;
}
.repo-card {
width: 90%;
}
}
@media (min-width: 1200px) {
.profile-name {
font-size: 32px;
}
.projects-container {
grid-template-columns: repeat(4, 1fr);
}
.repo-card {
width: 80%;
}
p {
font-size: 28px;
}
}