-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
84 lines (69 loc) · 1.14 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
* {
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
font-size: 24px;
}
body {
background-image: url("img/background.jpg");
}
header {
color: white;
width: 60%;
text-align: center;
font-family: Georgia, 'Times New Roman', Times, serif;
font-weight: bold;
font-size: 50px;
padding: 20px;
}
main {
display: flex;
flex-direction: row;
height: 900px;
}
#play-area {
order: 1;
display: flex;
flex-direction: column;
align-items: flex-start;
width: 60%;
border-radius: 50px;
}
button {
color: black;
}
#new-hand {
display: none;
}
img {
width: 150px;
}
#right {
width: 25%;
order: 2;
}
#right div {
text-align: center;
padding-top: 50px;
}
#dealer, #player {
width: 80%;
margin: 20px auto;
text-align: center;
}
.card {
width: 150px;
height: 240px;
margin: 5px;
background-color: blanchedalmond;
display: inline-block;
border: 4px solid blanchedalmond;
border-radius: 10px;
}
#percentage {
height: 150px;
background: white;
opacity: .4;
border-radius: 30px;
}
#feedback {
}