-
Notifications
You must be signed in to change notification settings - Fork 1
/
stylesheet.css
109 lines (106 loc) · 1.85 KB
/
stylesheet.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
* {
margin: auto;
box-sizing: border-box;
}
.leftSide {
position: fixed;
left: 0px;
top: 25%;
}
.rightSide {
position: fixed;
height: 50%;
right: 0px;
}
.middle {
top: 50%;
}
.centered {
position: fixed;
top: 50%;
left: 50%;
transform: -50%, -50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
}
.dialogBox {
width: 25%;
height: 50%;
}
.playerCards{
height:auto;
width:auto;
}
.player{
float: left;
width: 25%;
display:inline-block;
}
#story{
font-size: 2em;
}
body {
background: #333333;
font-family: Arial, Helvetica, sans-serif;
text-align: center;
color: white;
}
#choiceTitle{
font-size: 2em;
}
/*
Option on the left...
*/
#leftChoice {
position: absolute;
opacity: 0.85;
border-radius: 25px;
background-color: #474747;
color: white;
overflow-y: scroll;
font-size: 2em;
}
/*
Option on the right... NOT the CORRECT answer
*/
#rightChoice {
opacity: 0.85;
background-color: #474747;
border-radius: 25px;
color: white;
overflow-y: scroll;
font-size: 2em;
}
#currentPlayer {
background-repeat: no-repeat;
background-size: 100% 100%;
width: 20%;
height: 50%;
}
/* Game area wont show until START button pressed */
#gameArea {
background-image: url('images/BackDrops/backdrop2.png');
background-attachment: fixed;
background-size: 100% 100%;
position: fixed;
width: 100%;
height: 97%;
overflow: hidden;
display: none;
background-color: gray;
padding-top: 3%;
}
#footer {
background-color: #474747;
width: 100%;
height: 25%;
position: fixed;
left: 0;
right: 0;
bottom: 0;
opacity: 0.9;
color: white;
overflow-y: scroll;
}