-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
149 lines (144 loc) · 2.29 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/*Changes colors of buttons that are disabled*/
.disabled {
color: #999;
}
#table {
background-image: url(table.jpg);
background-size: contain;
background-repeat: no-repeat;
width: 1200px;
height: 500px;
background-size: 100% 100%;
border-radius:10px;
box-shadow: 1px 1px 3px #000;
}
#playerSide{
padding-top: 10px;
margin:auto;
}
.outline{
width: 110px;
text-align: center;
padding: 10px;
margin: 10px;
background: #FFF;
box-shadow: 1px 1px 3px #000;
border-radius:10px;
display: inline-block;
}
.front {
background: white;
}
.playerDisplay{
height:180px;
}
.top{
text-align: left;
}
.bottom{
text-align: right;
}
.middle{
height: 60px;
text-align: center;
}
/*colors for word display*/
.black{
color:black;
}
.red{
color:red;
}
.white{
color: white;
}
/*Covers the card by setting text and background red*/
.back{
border: 2px solid white;
background: red;
color: red;
}
/*For introduction display with border*/
.intro{
box-shadow: 1px 1px 3px #000;
border-radius:10px;
border: 2px solid #475657;
background-color: #CAFFD0;
height: 500px;
}
body{
background-color: #E6FAFC;
}
.titleJumbo{
background-image: url(blackjacktitle.png);
background-repeat: no-repeat;
background-size: contain;
background-color: black;
box-shadow: 1px 1px 3px #000;
border-radius:10px;
border: 2px solid #475657;
background-size: 100% 100%;
height: 200px;
}
/*Play button styling */
#playGame{
text-align: center;
padding-top: 10px;
}
#playButton{
border-radius: 50%;
box-shadow: 0 9px #999;
background-color: #A0EEC0;
font-size: 24px;
cursor: pointer;
border: 2px solid #475657;
}
#playButton:hover{
background-color: #3e8e41;
color:white;
}
#playButton:active{
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
#playerStats{
padding-top: 15px;
}
#result{
padding-top: 15px;
}
/*center text*/
.textCenter{
text-align: center;
}
.inLine{
display: inline;
}
/*score name input styling*/
#playerName{
width: 10vw;
margin-left: 21vw;
}
#nameSubmit{
margin-right: 21vw;
}
.input-group{
padding-top: 1vh;
}
#highscores{
margin-top: 1vh;
}
/*.center { text-align: center; list-style-position:inside;}*/
ol{
margin-left: 19vw;
}
ol li{
text-align: left;
padding-top: 1vh;
margin-right: 26vw;
width: 300px;
}
#scoreboard{
padding-top: 1vh;
}