-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathplay.css
74 lines (64 loc) · 1.22 KB
/
play.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
/* Stylesheet for Lectrote windows
This sets up the top-level framework for the play.html window (and
other interpreter-specific play windows). Everything inside the
#gameport is styled by el-glkote.css.
*/
body {
margin: 0px;
height: 100%;
}
#content {
position: absolute;
width: 100%;
height: 100%;
background: white;
}
#gameport {
position: relative;
overflow: hidden;
background: inherit;
height: 100%;
margin: 0px 0px;
}
#cover_art_pane {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
overflow: hidden;
background: rgba(128, 128, 128, 0.75);
text-align: center;
}
#cover_art_pane img {
-webkit-box-shadow: 0 0 64px rgba(0,0,0,0.5);
}
#cover_art_pane input {
width: 80%;
text-align: center;
background: #CCC;
color: #444;
}
#searchbar {
display: none;
position: absolute;
top: 0px;
right: 0px;
padding: 1em;
background: #DDD;
border-left: 1px solid #AAA;
border-bottom: 1px solid #AAA;
-webkit-border-bottom-left-radius: 4px;
}
.SepiaTheme #searchbar {
background: #DDD;
border-color: #AAA;
}
.SlateTheme #searchbar {
background: #333;
border-color: #666;
}
.DarkTheme #searchbar {
background: #333;
border-color: #666;
}