-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (51 loc) · 909 Bytes
/
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
h1 {
font-family: 'Playfair Display';
font-weight: 800px;
font-size: 60px;
margin-top: 25px;
margin-bottom: 15px;
}
#main {
text-align: center;
}
#stats {
font-family: 'Space Mono';
background-color: #FFEAEA;
padding: 30px 250px;
display: inline-block;
border-radius: 30px;
}
#player, #computer {
display: inline;
}
#description {
font-weight: bold;
margin-bottom: 0;
}
img {
width: 200px;
border-radius: 15px;
padding: 0;
}
button {
height: 292px;
background-color: #ffeaea00;
border: 0;
padding: 0;
margin: 0px 10px;
transition: transform .5s;
}
button:hover {
transform: scale(1.05);
border: 5px solid #e69494;
border-radius: 20px;
}
#game {
margin-top: 50px;
display: grid;
grid-template-columns: auto auto;
justify-content: center;
}
.comp-card {
margin-right: 100px;
}