-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
113 lines (97 loc) · 1.68 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
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
body {
margin: 0;
user-select: none;
overflow: hidden;
font-family: 'Roboto', sans-serif;
}
.tutorial {
position: absolute;
width: 100vw;
height: 100vh;
z-index: 100;
background: #0007;
color: #fff;
}
.tutorial .skip {
position: absolute;
right: 0;
bottom: 0;
width: 250px;
text-align: center;
height: 75px;
line-height: 75px;
text-transform: uppercase;
color: #fff7;
font-size: 1.4em;
transition: .15s all ease;
cursor: pointer;
}
.tutorial .skip:hover {
color: #fff;
}
.tutorial .hint {
background: #fff;
border-radius: 5px;
border: 2px solid #ccc;
width: 300px;
color: #000;
padding: 10px;
position: absolute;
}
.tutorial .hint .continue {
text-align: right;
font-size: .8em;
margin-top: 5px;
color: #777;
}
canvas {
position: absolute;
top: 100px;
}
.nav {
height: 100px;
width: 100vw;
display: flex;
color: #0f8;
background: #000;
position: absolute;
}
.nav > div {
display: flex;
text-align: center;
font-size: 1.2em;
position: absolute;
}
.nav > div > div {
width: 100px;
transition: .15s all ease;
cursor: pointer;
border: 1px solid #fff3;
}
.nav > div > div.active {
border: 2px solid #0f8;
border-right: 0;
border-left: 0;
}
.main {
right: 0;
height: 100px;
line-height: 100px;
}
.main > div {
border: 0 !important;
}
.alg, .move {
width: 225px;
height: 60px;
line-height: 60px;
overflow: hidden;
margin: 20px;
}
.alg {
right: 200px;
}
.s { border-radius: 20px 0 0 20px; }
.e { border-radius: 0 20px 20px 0; }
.active-s { border-left: 2px solid #0f8 !important; }
.active-e { border-right: 2px solid #0f8 !important; }