-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
113 lines (95 loc) · 1.6 KB
/
index.css
File metadata and controls
113 lines (95 loc) · 1.6 KB
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
.planet-1 {
position: absolute;
top: 50vh;
left: 3vw;
}
.planet-1 > img {
width: 20vw;
}
.planet-2 {
position: absolute;
top: 30vh;
left: 74vw;
}
.planet-2 > img {
width: 20vw;
}
.planet-3 {
position: absolute;
top: 7vh;
left: 30vw;
}
.planet-3 > img {
width: 7vw;
}
#app {
height: 100vh;
z-index: 100;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.nm-buttons {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.nm-title {
display: flex;
justify-content: center;
margin-top: 1vh;
margin-bottom: 6vh;
}
.nm-button-big-root {
display: flex;
flex-direction: row;
gap: 5vh;
}
.nm-button-big {
display: flex;
flex-direction: column;
cursor: pointer;
}
.nm-button-big > img {
height: 15vh;
user-select: none;
-webkit-user-select: none;
-webkit-user-drag: none;
-moz-user-select: none;
}
.nm-button-big > span {
display: flex;
justify-content: center;
position: relative;
top: -7vh;
}
.nm-server-name {
float: bottom;
position: absolute;
bottom: 5vh;
}
.nm-detailed-search-robot {
position: absolute;
top: 3vh;
right: 25vw;
animation: slide-robot 4s linear infinite;
}
.nm-detailed-search-robot > img {
height: 15vh;
}
@keyframes slide-robot {
0% {
transform: translate3d(0, 0, 0);
}
50% {
transform: translate3d(0, -5vh, 0);
}
100% {
transform: translate3d(0, 0, 0);
}
}
img {
user-select: none;
}