-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
139 lines (113 loc) · 2.19 KB
/
index.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
img{
width: 200px;
height: 250px;
}
* {
margin: 0;
padding: 0;
text-decoration: none;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
transition: all 0.4s;
}
body {
background-color: blueviolet;
}
.header{
background-color: cornflowerblue;
height: 100px;
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.header p{
font-size: 18px;
padding-bottom: 5px;
}
.header h2{
font-size: 30px;
transition: all 0.4s;
}
.header h2:hover{
transform: scale(1.05);
color: blueviolet;
}
.interface a{
display: flex;
flex-wrap: nowrap;
}
.interface div{
width: 100vw;
height: 250px;
padding: 0 10px 0 20px;
transition: all 0.4s;
}
.interface div:hover{
background-color: darkmagenta;
}
.interface h3{
padding: 12px 0 4px;
color: cornflowerblue;
}
.interface div:hover p{
color: blueviolet;
}
.button-prefight{
width:100%;
font-size: 25px;
text-transform: uppercase;
color: #000;
}
.actions{
width: 100%;
display: flex;
flex: wrap;
}
.actions a{
width: 33.33%;
padding: 10px 0px;
text-align: center;
}
.actions a:nth-of-type(1) {
background-color: #e64747;
}
.actions a:nth-of-type(2) {
background-color: #e6ce47;
}
.actions a:nth-of-type(3) {
background-color: #6de647;
}
.actions a:hover{
opacity: 0.8;
}
.arena{
width: 100%;
height: 180px;
background-color: cornflowerblue;
background-image: url("img/roman-colosseum-italy.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: 35vh;
visibility: hidden;
}
.enemy a{
display: flex;
flex-wrap: nowrap;
}
.enemy div{
width: 100vw;
height: 250px;
padding: 0 10px 0 20px;
transition: all 0.4s;
}
.enemy div:hover{
background-color: darkmagenta;
}
.enemy h3{
padding: 12px 0 4px;
color: cornflowerblue;
}
.enemy div:hover p{
color: blueviolet;
}