forked from verkaufer/TextAdventureGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
128 lines (105 loc) · 2.2 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
128
/* colors to be used, aka color palette
#E6E6C3 - cream white color bg
#DE4124 - orange red for headings
#6F807C - steel blue
#A6BFBA - light pastel blue
#FCFCE3 - offwhite for content box
*/
body {
background-color: #e1ddd9;
font-size: 12px;
font-family: Courier New, Courier, Monospace;
color:#FCFCE3;
padding:5px;
margin:0px;
margin-top:15px;
text-align: center;
height:100%;
}
#content {
text-align: left;
vertical-align: middle;
margin: 0px auto;
padding: 20px;
width: 550px;
background-color: #ffffff;
border: 1px dashed #564b47;
height:100%;
}
#inventory{
width: 80%px;
background-color: #fff;
clear:both;
}
#inventory p{
color:#000;
border:1px dashed #000;
padding:5px;
display:none;
}
.item{
padding-left: 25px;
}
#map{
text-decoration: underline;
}
h1{
font-family: Verdana, Arial, Helvetica, SunSans-Regular, Sans-Serif;
color:#DE4124;
font-size:2.5em;
}
h4{
font-family: Verdana, Arial, Helvetica, SunSans-Regular, Sans-Serif;
font-size:1.5em;
color:#000;
}
.subtitleFont{
font-size: 8pt;
font-family: Courier New, Courier, Monospace;
text-decoration:underline;
color:#000;
}
.footer{
font-size: 8pt;
font-family: Verdana, Arial, Helvetica, SunSans-Regular, Sans-Serif;
color:#000;
clear:both;
}
#mainTextbox{
width:50%;
height:300px;
float:left;
margin-bottom:20px;
}
.storyText{ /* box-sizing code provided by css-tricks.com. I would have never thought that getting a textarea to fill 100% would require -webkit or -moz */
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box; /* Firefox, other Gecko */
box-sizing: border-box; /* Opera/IE 8+ */
width:100%;
height:100%;
}
#commandButtons{
width:48%;
height:100%;
float:right;
}
p.headings{
font-family: Verdana, Arial, Helvetica, SunSans-Regular, Sans-Serif;
color:#DE4124;
font-weight:bold;
font-size:2em;
text-align:center;
text-shadow: 1px 1px 1px #C0C0C0;
}
#score{
color:#000;
font-size:2.5em;
text-align:center;
text-shadow: 1px 1px 1px #000;
}
.scoreHead{
color:#6F807C;
}
#push{
height:115px;
}