-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
110 lines (99 loc) · 2.09 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
@font-face {
font-family: fantFont;
src: url("image/dpcomic.ttf");
}
html, body {
height: 100%;
margin:0;
color: white;
background-color: black;
overflow: hidden;
}
audio {
position: absolute;
opacity: 0;
}
#container-arena {
min-height: 100%;
background-image: url("http://49.media.tumblr.com/da0f0968e44d80ed5e612c457fdb3e74/tumblr_ns1xakCIxs1u4ebpio1_1280.gif");
background-size: cover;
height: 50rem;
border-radius: 1rem;
margin: 2rem 0;
padding: 2rem;
}
.container-hero {
text-align: center;
display: inline-block;
background-image: url("image/paper.jpg");
background-size: cover;
border-radius: 5px;
font-size: 20px;
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
margin: 8rem 1rem 2rem 25px;
color: black;
width: 300px;
padding-bottom: 20px;
border: 6px outset #463432;
}
.card.selected-1 {
border: 10px outset #18461e;
}
.card.selected-2 {
border: 10px outset #460b0a;
}
.card.winner {
position: absolute;
margin-left: 28%;
transform: scale(1.5);
transition: all 2s;
}
.covered > * {
opacity: 0;
}
.hero-img {
width: 210px;
height: 250px;
border: 6px groove #464646;
margin-bottom: 25px;
}
.stats {
width: 250px;
display: inline-block;
margin: auto;
border: 5px outset #5f5f5f;
}
.stat {
display: inline-block;
width: 80px;
}
.stat img {
margin-right: 10px;
}
.buttons {
font-family: fantFont, fantasy;
position: absolute;
padding: 15px 25px;
font-size: 24px;
text-align: center;
cursor: pointer;
outline: none;
color: #fff;
background-image: url("https://img00.deviantart.net/f905/i/2014/037/0/5/burning_cracked_yogurt_wallpaper_1_by_black_b_o_x-d72j2o4.jpg");
background-size: cover;
border-color: #5f5f5f;
border-radius: 15px;
box-shadow: 0 9px #999;
}
.fight{
margin-left: 20px;
}
.replay {
margin-left: 107rem;
margin-top: -100px;
}
.buttons:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(5px);
}