-
Notifications
You must be signed in to change notification settings - Fork 3
/
contact.vue
108 lines (107 loc) · 2.37 KB
/
contact.vue
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
<template>
<div>
<a
href="https://www.linkedin.com/in/richsnapp/"
class="social"
target="_blank"
>
<div class="social-left">
<i class="fa-brands fa-linkedin" />
</div>
<div class="social-body">
<h4>LinkedIn</h4>
@richsnapp
</div>
</a>
<a
href="https://www.facebook.com/rich.snapp"
class="social"
target="_blank"
>
<div class="social-left">
<i class="fa-brands fa-facebook" />
</div>
<div class="social-body">
<h4>Facebook</h4>
@rich.snapp
</div>
</a>
<a href="https://www.twitter.com/snapwich" class="social" target="_blank">
<div class="social-left">
<i class="fa-brands fa-twitter" />
</div>
<div class="social-body">
<h4>Twitter</h4>
@snapwich
</div>
</a>
<a href="https://www.github.com/snapwich" class="social" target="_blank">
<div class="social-left">
<i class="fa-brands fa-github" />
</div>
<div class="social-body">
<h4>Github</h4>
@snapwich
</div>
</a>
<a href="https://medium.com/@snapwich" class="social" target="_blank">
<div class="social-left">
<i class="fa-brands fa-medium" />
</div>
<div class="social-body">
<h4>Medium</h4>
@snapwich
</div>
</a>
<a href="https://hachyderm.io/@snapwich" class="social" target="_blank">
<div class="social-left">
<i class="fa-brands fa-mastodon" />
</div>
<div class="social-body">
<h4>Mastodon</h4>
@snapwich
</div>
</a>
<a
href="https://www.instagram.com/britishgracie"
class="social"
target="_blank"
>
<div class="social-left">
<i class="fa-brands fa-instagram" />
</div>
<div class="social-body">
<h4>Cats of Instagram</h4>
@britishgracie
</div>
</a>
</div>
</template>
<style lang="less" scoped>
a.social {
display: flex;
margin-bottom: 15px;
padding: 15px 20px;
border-radius: 10px;
background: #f8f8f8;
&:hover {
background: #f0f0f0;
}
i {
font-size: 50px;
width: 80px;
}
h4 {
margin: 0;
}
.social-body {
align-content: flex-end;
}
}
a.social,
a.social a {
text-decoration: none;
border-bottom: 0 !important;
box-shadow: none !important;
}
</style>