blob: e07dde3371d0a65addc0df9e43f89a3f2626e01a (
plain)
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
130
131
132
133
134
135
136
137
138
139
140
141
142
|
html, body {
background-color: #222;
color: white;
}
#intro-avatar {
width: 128px;
height: 128px;
}
#intro-title {
margin: 0;
}
#intro {
text-align: center;
}
#social {
display: grid;
grid-template-columns: repeat(6, 1fr);
grid-column-gap: 10px;
padding: 25px 40px;
}
.social-item {
padding: 10px;
border-radius: 10px;
background-color: #333;
text-align: center;
display: block;
text-decoration: none !important;
box-shadow: 0 0 20px rgba(0, 0, 0, .3);
transform: scale(1);
transition: transform 200ms;
}
.social-item-icon {
margin-top: 5px;
filter: invert(1);
vertical-align: middle;
width: 48px;
height: 48px;
}
.social-item-text {
font-size: 20px;
margin-top: 5px;
color: white;
text-decoration: none !important;
}
.social-item:hover {
transform: scale(1.2);
z-index: 9;
}
@media (max-width: 992px) {
#social {
grid-template-columns: repeat(3, 1fr) !important;
grid-row-gap: 10px;
}
}
@media (max-width: 617px) {
#social {
display: none;
}
#social-mobile {
display: block;
}
}
@media (min-width: 617px) {
#social {
display: grid;
}
#social-mobile {
display: none;
}
}
.social-mobile-item {
padding: 10px;
border-radius: 10px;
background-color: #333;
display: block;
text-decoration: none !important;
box-shadow: 0 0 20px rgba(0, 0, 0, .3);
transition: background-color 200ms;
margin-bottom: 10px;
}
.social-mobile-item:hover {
background-color: #444;
}
.social-mobile-item-icon {
filter: invert(1);
width: 24px;
height: 24px;
vertical-align: middle;
}
.social-mobile-item-text {
display: inline-block;
color: white;
text-decoration: none !important;
vertical-align: middle;
margin-left: 5px;
}
#social-mobile {
margin-top: 30px;
}
#intro-ref {
margin: 0;
}
#intro-ref-link {
color: white;
text-decoration: none;
}
#intro-ref-link:hover {
text-decoration: underline;
}
#footer {
text-align: center;
}
#footer-hover-text {
display: none;
}
#footer-hover-zone:hover #footer-hover-text {
display: inline;
}
|