-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
76 lines (75 loc) · 1.28 KB
/
styles.css
File metadata and controls
76 lines (75 loc) · 1.28 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
section {
height: 100vh;
background-color: rgb(39, 41, 68);
font-family: sans-serif;
}
.score {
color: white;
height: 20vh;
display: flex;
justify-content: space-around;
align-items: center;
}
.score h2 {
font-size: 30px;
}
.score p {
text-align: center;
padding: 10px;
font-size: 25px;
}
.intro {
color: white;
height: 50vh;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
transition: opacity 0.5s ease;
}
.intro h1 {
font-size: 50px;
}
.intro button, .match button {
width: 150px;
height: 50px;
color: white;
font-size: 20px;
background: rgb(45, 117, 96);
border: none;
border-radius: 3px;
cursor: pointer;
}
.match {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
transition: opacity 0.5s ease 0.5s;
}
.winner {
font-size: 50px;
color: white;
text-align: center;
}
.hands, .options {
display: flex;
justify-content: space-around;
text-align: center;
}
.player-hand {
transform: rotateY(180deg);
}
div.fadeOut {
opacity: 0;
pointer-events: none;
}
div.fadeIn {
opacity: 1;
pointer-events: all;
}