-
Notifications
You must be signed in to change notification settings - Fork 128
/
Copy pathblackJ.css
143 lines (124 loc) · 2.35 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
*{
margin: 0;
padding: 0;
}
html{
font-size: 62.5%;
/* 10px and default 1rem=16px */
}
.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: whitesmoke;
}
.row1 div{
padding: 1rem;
text-align: center;
flex: 1;
}
.row1 h2{
font-family: 'Lobster', cursive;
font-size: 4rem;
}
#your-box{
border-right: black 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;
font-size: 4rem;
}
.row3{
margin: auto;
}
table, th, td{
padding: .5rem;
border: solid 2px black;
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%;
}
}