-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
96 lines (96 loc) · 1.69 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
body {
margin: 0 auto;
width: 0 auto;
}
.my-cont {
width: 60%;
}
#cont {
width: -webkit-fill-available;
border: 2px solid black;
}
#button {
display: flex;
justify-content: space-around;
padding: 2%;
border: 2px solid black;
}
#result {
text-align: center;
display: none;
border: 2px solid black;
}
.flex-box-container {
display: flex;
border: 2px solid black;
padding: 10px;
flex-wrap: wrap;
flex-direction: row;
justify-content: space-around;
}
.flex-box-container img {
margin: 10px;
box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.7);
}
#flex-cat-gen {
display: none;
}
.rps {
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: space-around;
padding-bottom: 1%;
}
.rps img:hover {
box-shadow: 0px 10px 50px rgba(37, 50, 233, 1);
}
.flexbox {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
padding-bottom: 2%;
}
/* Challenge 5 */
.flex-blackjack-row-1 {
padding: 8px;
margin: 0 auto;
background: url('images/bj-bg.jpg');
}
.col-lg-6 {
padding: 5px;
min-height: 350px;
border: 1px solid black;
}
.f-btn {
margin: 0 auto;
width: fit-content;
border: 1px solid black;
padding: 8px;
}
.flex-blackjack-row-2,
.flex-blackjack-row-3 {
margin-top: 8px;
width: -webkit-fill-available;
padding: 8px;
border: 1px solid black;
}
.flex-blackjack-row-4 {
width: fit-content;
text-align: center;
margin: 0 auto;
}
th,
td {
color: white;
font-size: 15px;
padding: 5px;
border: 1px solid black;
}
#your-box1,
#dealer-box1 {
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: space-evenly;
}