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
|
.collab {
text-align: right;
}
.collab p {
font-weight: lighter !important;
margin-bottom: 20px;
}
.hr {
background: rgba(255, 255, 255, 0.2);
height: 1px;
}
.info h4 {
font-size: 18px;
font-weight: lighter;
}
.info p {
color: grey;
font-weight: lighter;
}
.info li {
font-weight: lighter;
color: #fff;
font-size: 18px;
padding-left: 20px;
}
#fb::before {
display: inline-block;
content: '';
border-radius: 100%;
height: 4px;
width: 4px;
margin-right: 6px;
background: #3b5998;
}
#ig::before {
display: inline-block;
content: '';
border-radius: 100%;
height: 4px;
width: 4px;
margin-right: 6px;
background: #fcaf45;
}
#tw::before {
display: inline-block;
content: '';
border-radius: 100%;
height: 4px;
width: 4px;
margin-right: 6px;
background: #55acee;
}
#yt::before {
display: inline-block;
content: '';
border-radius: 100%;
height: 4px;
width: 4px;
margin-right: 6px;
background: #c4302b;
}
#gh::before {
display: inline-block;
content: '';
border-radius: 100%;
height: 4px;
width: 4px;
margin-right: 6px;
background: #24292e;
}
#media, #address {
text-align: right;
}
#media ul {
list-style: none;
}
#media ul li {
display: inline-block;
}
@media(max-width: 768px) {
.collab, #personal, #media, #address {
text-align: center;
}
.info ul {
margin: 0 0 0 -22px;
padding: 0;
}
}
/* Honestly, this took way longer to figure out than it should've. I scoured the internet for so long, at one point, I think
// I had around 20+ tabs open, no idea how I really figured it out, just tried as many solutions until it was solved. - 17:27, 10/20/2018
*/
div #no-h, #personal a, a:hover, #media a, a:hover, #address a, a:hover {
color: inherit;
text-decoration: none;
transition: 0.5s;
}
|