forked from CS340-21/FantasyStockMarket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
interface.css
55 lines (55 loc) · 985 Bytes
/
interface.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
body {
margin-top: 4%;
margin-left: 15%;
margin-right: 15%;
background-image: url('images/scroll.png');
background-position: top;
background-size: 100%;
font-family: Georgia;
}
#header {
font-family: 'Beth Ellen', Georgia;
font-size: 40pt;
text-align: center;
color: black;
padding-bottom: 11%;
}
.content {
font-size: 15pt;
}
#time-container {
width: 100%;
text-align: center;
}
#stock-outer-container {
float: left;
width: 50%;
}
#stock-inner-container {
/* float: center; */
text-align: center;
border-left: solid black 1px;
border-right: solid black 1px;
width: 90%;
height: 100%;
padding: 0;
margin: 0;
}
#quest-outer-container {
float: right;
width: 50%;
}
#quest-inner-container {
/* float: right; */
text-align: center;
border-left: solid black 1px;
border-right: solid black 1px;
width: 90%;
height: 100%;
}
button {
font-family: inherit;
font-size: inherit;
background: none;
border: solid black 1px;
}