-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (87 loc) · 2.05 KB
/
index.html
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
<div class="card_border">
<div class="card green">
<div class="body_card">
<div class="centreNumber">8</div>
</div>
</div>
</div>
<div class="card_border">
<div class="card red">
<div class="body_card">
<div class="centreNumber">2</div>
</div>
</div>
</div>
<div class="card_border">
<div class="card black">
<div class="back">
<div class="centreNumber"></div>
</div>
</div>
</div>
<style>
.card_border {
height: 85px;
width: 60px;
border-radius: 10px 10px 10px 10px;
border: solid 1px rgba(0, 0, 0, 0.671);
background: white;
margin: 10px;
box-shadow: 2px 2px 1px black;
}
.card {
overflow: hidden;
position: absolute;
margin: 5px;
width: 50px;
height: 75px;
border-radius: 10px;
}
.body_card {
display: block;
border-radius: 60px 10px 60px 10px;
height: 60px;
width: 49px;
border: 1px solid white;
background-color: white;
margin: 0 auto;
margin-top: 5px;
}
.centreNumber {
padding-top: 15px;
padding-left: 19px;
font-size: 1.5em;
text-shadow: #000000 1px 1px, #000000 -1px 1px, #000000 -1px -1px, #000000 1px -1px;
width: 20px;
height: 20px;
}
.back {
display: block;
background-color: red;
border-radius: 70px 10px 70px 10px;
height: 60px;
width: 49px;
border: 1px solid red;
margin: 0 auto;
margin-top: 5px;
}
.red {
background-color: red;
color: red;
}
.blue {
background-color: blue;
color: blue;
}
.green {
background-color: green;
color: green;
}
.orange {
background-color: orange;
color: orange;
}
.black {
background-color: black;
}
</style>