-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·127 lines (102 loc) · 1.91 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
body {
margin: 0 auto;
font-family: Helvetica;
background-color: #fff;
user-select: none;
}
canvas {
z-index: 1;
position: absolute;
}
#background {
width: 100%;
height: 100%;
opacity: 50%;
position: absolute;
left: 0;
top: 0;
z-index: -10;
}
.button {
z-index: 10;
display: block;
margin-bottom: 5px;
padding: 10px 15px;
opacity: 0.8;
background-color: #ddd;
border: 1.5px #ddd solid;
text-align: center;
font-size: 10px;
letter-spacing: 1.5px;
color: #555;
transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.button:hover {
background: #eee;
color: #0a0;
border-color: #0a0;
cursor: url(cursor.cur), auto;
}
.buttom:active {
}
#cmdContainer {
z-index: 10;
position: absolute;
bottom: 10px;
left: 10px;
font-family: Courier New;
font-size: 14px;
}
#cmdBox {
display: inline-block;
width: 30vw;
padding: 5px 10px;
background-color: rgba(50,50,50,0);
border: none;
font-family: Courier New;
font-size: 14px;
color: rgba(250,250,250,0);
transition: background-color 0.2s, color 0.2s;
}
#cmdBox:hover {
background-color: rgba(50,50,50,0.5);
color: rgba(250,250,250,0.5);
}
#cmdBox:focus {
background-color: rgba(50,50,50,1);
color: rgba(250,250,250,1);
outline: none;
}
#cmdEnterBtn {
display: inline-block;
padding: 5px;
color: rgba(200,200,200,0);
background-color: rgba(50,50,50,0);
transition: background-color 0.2s, color 0.2s;
}
#cmdEnterBtn:hover {
background-color: rgba(50,50,50,1);
color: rgba(200,200,200,1);
outline: none;
}
#cmdResult {
display: block;
padding: 5px;
margin-bottom: 10px;
background-color: rgba(50,50,50,0);
color: rgba(255,255,255,0);
transition: background-color 0.2s, color 0.2s;
}
#cmdResult:hover {
background-color: rgba(50,50,50,0.5);
color: rgba(255,255,255,1);
}
#margin {
position: absolute;
bottom: 10px;
right: 10px;
font-size: 13px;
color: #999;
letter-spacing: 1.5px;
font-variant-caps: all-small-caps;
}