forked from erkyrath/lectrote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplay.css
52 lines (45 loc) · 894 Bytes
/
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
/* 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;
}
#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;
}