-
Notifications
You must be signed in to change notification settings - Fork 0
/
blackJ.css
183 lines (162 loc) · 3.4 KB
/
blackJ.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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
*{
margin: 0;
padding: 0;
}
body{
background-image: url("./static/water.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: auto;
}
html{
font-size: 65%;
/* 10px and default 1rem=16px */
}
ul,li{
font-size: large;
font-weight: bolder;
color: rgb(168, 12, 12);
text-shadow:
-1px -1px 0 black,
1px -1px 0 black,
-1px 1px 0 black,
1px 1px 0 black;
margin-top: 5rem;
}
.title{
text-align: center;
background: rgb(232,224,117);
background: linear-gradient(0deg, rgba(232,224,117,1) 0%, rgba(1,1,1,1) 15%);
color: gold;
/* font-family: 'Lobster', cursive; */
font-family: 'Pushster', cursive;
/* font-family: 'Ubuntu', sans-serif; */
padding: .5rem;
font-size: 8rem;
word-spacing: 2rem;
letter-spacing: .3rem;
}
#command {
font-family: 'Vujahday Script', cursive;
font-weight: 800;
font-size: 3.5rem;
word-spacing: 1rem;
animation: blinker 2s step-start infinite;
}
@keyframes blinker {
25% {
opacity: 0;
}
}
.main{
margin: auto;
text-align: center;
}
.row1{
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: space-around;
padding: 1rem;
border-bottom: black solid .1rem;
height: 50rem;
}
.row1 ,.row2{
background: url('./static/table.jpg') no-repeat center center/cover;
width: auto;
color:red;
text-shadow:
-1px -1px 0 black,
1px -1px 0 black,
-1px 1px 0 black,
1px 1px 0 black;
}
.row1 div{
padding: 1rem;
text-align: center;
flex: 1;
}
.row1 h2{
font-family: 'Lobster', cursive;
font-size: 4rem;
}
#your-box{
border-right: rgb(133, 15, 15) solid 1px;
}
#your-box img, #dealer-box img{
height: 20rem;
width: 13rem;
padding: 1rem;
}
.row2{
display: flex;
justify-content: space-around;
margin-bottom: 3rem;
}
.buttons{
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: space-around;
width: 55%;
}
.buttons button{
font-size: 2.2rem;
font-weight: 700;
font-family: 'Lobster', cursive;
padding-left: 2rem;
padding-right: 2rem;
padding-top: .2rem;
padding-bottom: .2rem;
margin: 1.5rem;
}
.buttons button:hover{
cursor: pointer;
box-shadow: black 0px 0px 5px 2px;
}
.row3 h3{
font-family: 'Teko', sans-serif;
color:burlywood;
text-shadow:
-1px -1px 0 black,
1px -1px 0 black,
-1px 1px 0 black,
1px 1px 0 black;
font-size: 4rem;
}
.row3{
margin: auto;
}
table, th, td{
padding: .5rem;
border: solid 2px rgb(210, 8, 8);
text-shadow:
-1px -1px 0 rgb(248, 215, 0),
1px -1px 0 rgb(255, 217, 0),
-1px 1px 0 rgb(255, 242, 0),
1px 1px 0 rgb(255, 242, 0);
text-shadow:
-1px -1px 0 burlywood,
1px -1px 0 burlywood,
-1px 1px 0 burlywood,
1px 1px 0 burlywood;
font-size: 3rem;
font-family: 'Teko', sans-serif;
font-weight: 400;
padding-left: 3rem;
padding-right: 3rem;
}
table{
margin: auto;
margin-bottom: 5rem;
}
@media screen and (max-width:740px){
html{
font-size: 40%;
}
}
@media screen and (max-width:420px){
html{
font-size: 30%;
}
}