-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
81 lines (72 loc) · 1.49 KB
/
index.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
* {
box-sizing: border-box;
color: rgba(255, 255, 255, 0.9);
font-family: "Mona Sans","Mona Sans Fallback",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
}
#canvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: black;
}
.container {
position: absolute;
z-index: 10;
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.info {
background-color: rgba(10, 10, 10, 0.9);
border-radius: 5px;
width: 400px;
text-align: center;
display: flex;
flex-direction: column;
padding: 30px;
}
.info__image {
width: 120px;
height: 120px;
margin: 0 auto;
}
.info__image img {
width: 100%;
border-radius: 50%;
}
.info__links {
display: flex;
justify-content: center;
}
a {
padding: 15px 40px;
color: #fff;
background: none;
box-shadow: rgb(255 255 255 / 25%) 0 0 0 1px inset;
font-size: 1rem;
font-weight: 700;
line-height: 2;
text-align: center;
white-space: nowrap;
vertical-align: middle;
user-select: none;
border: 0;
border-radius: 0.375rem;
transition: box-shadow .2s,outline .2s ease;
cursor: pointer;
appearance: none;
text-decoration: none;
}
a:hover {
box-shadow: rgb(255 255 255) 0 0 0 2px inset;
}
svg {
fill: #fff;
position: relative;
top: 5px;
right: 5px;
}