-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
100 lines (90 loc) · 1.62 KB
/
styles.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
@import url('https://fonts.googleapis.com/css?family=Orbitron');
body {
text-align: center;
font-family: 'Orbitron', sans-serif;
color: #CEECF5;
background: black;
}
aside {
padding: 10px 10px 10px;
width: 0.5%;
min-height: 70vh;
height: auto;
max-height: 80vh;
box-shadow: 0 0 7px white;
position: fixed;
background-color: rgba(16,16,16,.7);
right: 0;
top: 10%;
z-index: 15;
overflow: hidden;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
aside:hover {
width: 10%;
color: white;
}
p#credit {
position: absolute;
border: none;
color: grey;
margin: 5px 1px 5px;
font-size: xx-small;
padding: 0;
bottom: 0;
cursor: default;
z-index: -1;
}
p#credit:hover {
color: cyan;
background-color: transparent;
}
aside p {
display: block;
border-radius: 10px;
border: 2px solid transparent;
text-align: center;
margin-bottom: 10px;
margin-top: 0;
padding: 5px;
font-size: 2.5vh;
}
aside p:hover {
border: 2px solid rgba(0,0,255,.5);
background: rgba(0,0,0,.5);
cursor: pointer;
}
aside p:active {
border: 2px solid rgba(0,255,255,.5);
}
input {
width: 80%;
border-radius: 5px;
background: black;
margin-top: 0;
margin-left: 10px;
margin-right: 10px;
max-width: 90%;
color: white;
border: none;
text-align: center;
font-size: 2vh;
margin-bottom: 10px;
}
canvas {
background: black;
padding: 0;
margin: auto;
display: block;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 10;
}