-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
74 lines (60 loc) · 1.37 KB
/
style.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
body {
background-color: black;
height: 100vh;
margin: 0px;
overflow: hidden;
}
.image {
width: 40vmin;
position: absolute;
transform: translate(-50%, -50%);
}
.image[data-status="inactive"] {
display: none;
}
.image[data-status="active"] {
display: block;
}
body.menu-toggled > .link > span {
color: rgb(30, 30, 30);
}
#refresh {
bottom: 60px;
}
#git > i {
color: rgb(94, 106, 210);
}
#refresh > i {
color: rgb(239, 83, 80);
}
.link {
align-items: center;
backdrop-filter: blur(3px);
background-color: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 6px;
bottom: 10px;
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
cursor: pointer;
display: inline-flex;
gap: 5px;
right: 10px;
padding: 10px 20px;
position: fixed;
text-decoration: none;
transition: background-color 400ms, border-color 400ms;
z-index: 10000;
}
.link:hover {
background-color: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.link > i, .link > span {
height: 20px;
line-height: 20px;
}
.link > span {
color: white;
font-family: "Rubik", sans-serif;
font-weight: 500;
}