-
Notifications
You must be signed in to change notification settings - Fork 0
/
card_design.html
58 lines (58 loc) · 2.62 KB
/
card_design.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
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href='http://fonts.googleapis.com/css?family=Titillium+Web:400,200' rel='stylesheet' type='text/css'> <style>
*{
margin:0px;
padding:0px;
border:0px;
overflow:hidden;
}
body{
background-color:#222222;
color:white;
}
#container{
position:absolute;
float:left;
}
.tileFront{
width:200px;
height:200px;
margin:5px;
background-color:#444444;
text-align: center;
border-radius: 3px;
font-family:'Titillium Web';
font-weight:200;
font-size:7em;
float:left;
}
.tileBack{
width:200px;
height:200px;
margin:5px;
background-color: #eee;
background-color:#444444;
background-image:
radial-gradient(circle at 100% 150%, #5b5b5b 24%, #444444 25%, #444444 28%, #5b5b5b 29%, #5b5b5b 36%, #444444 36%, #444444 40%, transparent 40%, transparent),
radial-gradient(circle at 0 150%, #5b5b5b 24%, #444444 25%, #444444 28%, #5b5b5b 29%, #5b5b5b 36%, #444444 36%, #444444 40%, transparent 40%, transparent),
radial-gradient(circle at 50% 100%, #444444 10%, #5b5b5b 11%, #5b5b5b 23%, #444444 24%, #444444 30%, #5b5b5b 31%, #5b5b5b 43%, #444444 44%, #444444 50%, #5b5b5b 51%, #5b5b5b 63%, #444444 64%, #444444 71%, transparent 71%, transparent),
radial-gradient(circle at 100% 50%, #444444 5%, #5b5b5b 6%, #5b5b5b 15%, #444444 16%, #444444 20%, #5b5b5b 21%, #5b5b5b 30%, #444444 31%, #444444 35%, #5b5b5b 36%, #5b5b5b 45%, #444444 46%, #444444 49%, transparent 50%, transparent),
radial-gradient(circle at 0 50%, #444444 5%, #5b5b5b 6%, #5b5b5b 15%, #444444 16%, #444444 20%, #5b5b5b 21%, #5b5b5b 30%, #444444 31%, #444444 35%, #5b5b5b 36%, #5b5b5b 45%, #444444 46%, #444444 49%, transparent 50%, transparent);
background-size:100px 50px;
float:left;
}
</style>
</head>
<body>
<div id="container">
<div class="tileFront">0</div>
<div class="tileFront">1</div>
<div class="tileFront">2</div>
<div class="tileBack"></div>
</div>
</body>
</html>