-
Notifications
You must be signed in to change notification settings - Fork 199
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (49 loc) · 1.05 KB
/
style.css
File metadata and controls
54 lines (49 loc) · 1.05 KB
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
#btnGet{
margin-top: 40px;
margin-bottom: 10px;
margin-left: 47%;
background-color: white;
border: 1px solid rgb(231, 126, 5);
border-radius: 5px;
padding:10px;
font-weight: bold;
}
#btnGet:hover{
transform: scale(1.15);
box-shadow: 5px 5px 15px rgba(0,0,0,0.6);
border: 1px solid rgb(231, 126, 5);
background-color: rgb(241, 123, 12);
color: rgb(246, 248, 247);
transition: .5s;
cursor: pointer;
}
#message {
display: grid;
grid-template-columns:33% 33% 33%;
grid-column-gap: 1em;
}
.player {
position: relative;
border-radius: 5px;
box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
margin-top: 20%;
margin-left:5% ;
padding: 10%;
text-align: left;
width: 50%;
}
h1{
text-align: center;
}
h2{
position: absolute;
}
.player>.strength {
font-size: 20px;
font-weight: bold;
}
.player:hover{
transform: scale(1.15);
box-shadow: 5px 5px 15px rgba(0,0,0,0.6);
background-color: rgb(241, 123, 12);
}