forked from dalath/room-sprawl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·107 lines (82 loc) · 1.15 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
/* @import url('colors.css'); */
html
{
/* background-image: url("../img/siteBackgrounds/siteBackground_1.jpg"); */
}
canvas
{
cursor: none;
}
#main_wrapper
{
position: relative;
margin: 0 auto;
width: 700px;
font-family: Helvetica;
}
#room_wrapper
{
position: absolute;
top: 200px;
left: 150px;
width: 500px;
height: 350px;
background-color: #ddebff;
/* border: 1px dotted lightgreen; */
}
#hud_wrapper
{
position: absolute;
top: 10%;
left: 15%;
font-weight: lighter;
font-size: small;
}
#room_title
{
position: absolute;
padding: 5px;
text-align: left;
font-weight: bold;
font-size: large;
/* border: 1px dotted red; */
}
#room_description
{
position: absolute;
padding: 5px;
text-align: left;
font-family: Courier;
font-size: medium;
/* border: 1px dotted blue; */
}
.btn_nav
{
position: absolute;
width: 50px;
height: 50px;
}
.btn_lock
{
position: absolute;
width: 50px;
height: 50px;
}
#btn_item
{
position: absolute;
min-width: 50px;
height: 50px;
}
.hud_row
{
height: 25px;
}
.hud_element
{
display: inline-block;
font-weight: normal;
font-size: medium;
}
/* z-index: 30; */
/* opacity: 0.5; */