-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
106 lines (97 loc) · 1.88 KB
/
Copy pathstylesheet.css
File metadata and controls
106 lines (97 loc) · 1.88 KB
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
body {
background-image: url("assets/images/game-background.jpg");
background-size: cover;
background-attachment: fixed;
overflow: hidden;
background-repeat: no-repeat;
background-position: center center;
text-align:center;
}
#mainContainer {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
text-align: center;
width: 50%;
padding-bottom: 10vh;
}
.col-md-10 {
min-width: 115vh;
}
#slotsContainer {
width: 90%;
background-color:steelblue;
}
#slotsRow{
min-height: 70vh;
}
#userContainer {
background-color: red;
height: 30%;
}
footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
min-width: 100vh;
min-height: 16vh;
max-height: 16vh;
background-color:steelblue;
color: white;
text-align: center;
}
#menuButton {
background-image: url("assets/images/paytable-normal.png");
}
#soundButton {
background-image: url("assets/images/sound-normal.png");
}
#infoButton {
background-image: url("assets/images/info-normal.png");
}
#forwardButton {
background-image: url("assets/images/quickspin-normal.png");
}
.userbutton {
width: 7vh;
height: 7vh;
background-size: 100%;
}
#userBalance {
border-style: solid;
border-color: #EAA83A;
}
.text {
font-weight: 600;
font-size: 3.5vh;
}
#increaseButton {
background-image: url("assets/images/plus-normal.png");
}
#decreaseButton {
background-image: url("assets/images/minus-normal.png");
}
#spinButton {
background-image: url("assets/images/spin-normal.png");
width: 20vh;
height: 20vh;
float: right;
}
#gameLogo {
height: 3vh;
width: 5vh;
padding-left: 7vh;
float: right;
}
.slot {
max-width: 100%;
max-height: 100%;
height: 100%;
width: 100%;
}
.nopadding {
padding: 0 !important;
margin: 0 !important;
}