-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
114 lines (94 loc) · 1.97 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
* {
color: white;
font-family: "Courier New", Courier, monospace;
}
html, body {
background-color: #061306;
}
h1 {
text-align: center;
}
h1, h2, h3, img, input, select {
margin: 6px 0;
}
audio, img, input[type="image"] {
outline: none;
vertical-align: middle;
}
input[type="checkbox"], input[type="file"], input[type="submit"], label, select {
cursor: pointer;
}
input[type="number"]:hover, input[type="submit"]:hover, select:hover, code:hover {
border: 1px solid #80FF80;
}
input[type="number"]:active, input[type="submit"]:active, select:focus, code:focus {
border: 1px solid white;
}
input[type="number"], input[type="submit"], select, code {
background-color: transparent;
border: 1px solid #00FF00;
border-radius: 8px;
box-sizing: border-box;
width: 100%;
}
input[type="number"], select {
font-size: medium;
height: 32px;
padding-left: 8px;
}
input[type="submit"] {
box-shadow: 0 0 16px #00FF00;
font-size: large;
height: 48px;
}
input[type="submit"]:hover {
box-shadow: 0 0 16px #80FF80;
}
input[type="submit"]:active {
box-shadow: none;
outline: none;
}
form, #result {
border: 2px solid #00FF00;
border-radius: 8px;
box-shadow: 0 0 32px #00FF00;
margin: 8px 8%;
padding: 12px 24px;
}
code {
display: block;
font-size: medium;
height: 16em;
margin: 6px 0 12px 0px;
overflow: auto;
padding: 8px;
resize: vertical;
}
code:empty:before {
content: attr(data-placeholder);
color: gray;
}
#destination, #disillusion, #inputPlayer, #options, #outputPlayer, #result, #rosen, #source {
display: none;
}
code > span {
color: gray;
}
#spinner {
animation: spin 1s linear infinite;
border: 8px solid #008000;
border-radius: 50%;
border-top: 8px solid #00FF00;
float: right;
height: 16px;
-webkit-animation: spin 1s linear infinite;
width: 16px;
}
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}