-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
101 lines (83 loc) · 1.66 KB
/
main.css
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-image: url("wallhaven-33394.jpg");
background-repeat: no-repeat;
background-size: cover;
font-family: Helvetica, Tahoma, Arial, "Microsoft YaHei", "微软雅黑", SimSun, "宋体", STXihei, "华文细黑", Heiti, "黑体", sans-serif;
-webkit-user-select: none;
}
a {
color: inherit;
}
#wrapper {
position: absolute;
text-align: center;
display: none;
background-color: rgba(37,42,52,0.766);
border-radius: 32px;
padding: 24px 32px;
min-width: 286px;
}
#wrapper #avatar {
padding-top: 24px;
height: 100px;
}
#avatar img {
height: 100%;
margin: 0 auto;
border-radius: 50%;
transition: all .8s;
}
#avatar img:hover {
transform: scale(1.2);
}
.title {
color: white;
}
.desc {
color: rgba(255, 255, 255, 0.612)
}
#links {
padding: 0;
margin: 0;
padding-top: 32px;
list-style: none;
}
#links li {
display: inline-block;
margin: 10px 15px;
border-radius: 100%;
width: 40px;
height: 40px;
line-height: 40px;
font-size: 28px;
cursor: pointer;
transition: all 0.4s;
}
#links #github {
border: solid 1px rgba(119, 214, 214, 0.251);
color: #77D6D6;
}
#links #github:hover {
border: solid 1px rgb(119, 214, 214);
}
#links #facebook {
border: solid 1px rgba(92, 107, 192, 0.344);
color: rgb(92, 107, 192);
}
#links #facebook:hover {
border: solid 1px rgb(92, 107, 192);
}
#links #instagram {
color: rgb(255, 143, 0);
border: 1px solid rgba(255, 143, 0, 0.251);
}
#links #instagram:hover {
border: 1px solid rgb(255, 143, 0);
}
#links #google {
color: rgb(229, 57, 53);
border: solid 1px rgba(229, 57, 53, 0.251);
}
#links #google:hover {
border: solid 1px rgb(229, 57, 53);
}