-
Notifications
You must be signed in to change notification settings - Fork 17
/
Casiono.css
156 lines (132 loc) · 2.54 KB
/
Casiono.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
body {
background: #332C20;
font: 100% Arial, Helvetica, sans-serif;
min-width: 1200px;
}
.valid
{
border: 1px solid lightgray;
}
.error
{
border: 1px solid red;
}
#panelWheel {
float: left;
}
img {
width: 100%;
height: auto;
}
label, input, .radio-group,.dropbtn, .dropdown-content {
transition: all 0.5s;
}
#panelDisplay {
float: left;
text-align: center;
font-weight: 300;
font-size: 20px;
width: 300px;
position: relative;
top: 300px;
left: -300px;
}
#currentCash {
color: #74bb3a;
}
#moneybag {
height: auto;
width: 70px;
margin: 0 auto;
}
#panelOptions {
float: left;
background: #D6B588;
width: 250px;
height: auto;
text-align: center;
font-weight: 300;
position: relative;
top: 100px;
border: ridge black 3px;
}
input[type=text] {
background: #D6B588;
color: white;
width: 60%;
height: 25px;
font-size: 20px;
}
input[type=radio] {
visibility: hidden;
display: none;
}
input[type=radio]:checked + label{
color: #74bb3a;
}
.radio-group label + input[type=radio] + label {
border-left: solid 3px #2b2b2b;
}
.radio-group {
border: solid 3px #2b2b2b;
display: inline-block;
border-radius: 10px;
overflow: hidden;
}
.radio-group label {
color: #3c3f41;
cursor: pointer;
font-weight: bold;
padding: 10px 20px;
}
/* Dropdown Button */
.dropbtn {
background-color: #74bb3a;
color: white;
padding: 16px;
font-size: 16px;
border: none;
cursor: pointer;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
position: relative;
display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
/*min-width: 160px;*/
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
z-index: 1;
width: 100%;
}
.dropdown-content label {
color: #74bb3a;
display: inline-block;
cursor: pointer;
font-weight: bold;
padding: 5px 0;
width: 100%;
}
/* Change color of dropdown links on hover */
.dropdown-content label:hover {
background-color: #f1f1f1
}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
display: block;
}
/* Change the background color of the dropdown button when the dropdown content is shown */
.dropbtn:hover{
background-color: #5a9125;
}
.dropdown-content input[type=radio]:checked + label{
color: #c2c2c2;
background: #2b2b2b;
}
figure {
cursor: pointer;
}