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
101 lines (90 loc) · 1.73 KB
/
Copy pathstyle.css
File metadata and controls
101 lines (90 loc) · 1.73 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
body {
background: #d6c5c2;
}
#nameandpicture {
position: relative;
max-width: 100%;
height: auto;
}
#projects {
display: grid;
grid-template-columns: auto;
gap: 10px;
}
.profile-pic {
border-radius: 30px;
max-width: 100%;
height: auto;
}
.profile-name {
font-size: 100%;
font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
background-color: rgb(56, 172, 88);
color: white;
padding: 20px;
max-width: 100%;
height: auto;
}
.project-info {
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: white;
max-width: 100%;
height: auto;
border: 2px solid black;
padding: 10px;
background-color: rgb(130, 110, 109);
}
.project-links {
color: white;
font-size: 12px;
max-width: 100%;
height: auto;
}
.push {
background-color: teal;
padding: 20px;
max-width: 100%;
height: auto;
border: 2px solid black;
}
.commits {
background-color: turquoise;
padding: 20px;
max-width: 100%;
height: auto;
border: 2px solid black;
}
@media (min-width: 768px) {
.profile-name {
font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
background-color: rgb(56, 172, 88);
color: white;
position: absolute;
top: 8px;
left: 16px;
font-size: 20px;
}
#projects {
display: grid;
grid-template-columns: auto auto;
gap: 10px;
padding: 10px;
}
}
@media (min-width: 992px) {
.profile-name {
font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
background-color: rgb(56, 172, 88);
color: white;
position: absolute;
top: 8px;
left: 16px;
font-size: 20px;
}
#projects {
display: grid;
grid-template-columns: auto auto auto auto;
gap: 10px;
padding: 10px;
}
}