-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
49 lines (43 loc) · 855 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
body{
height: 100vh;
width: 100vw;
background: rgb(2,0,36);
background: radial-gradient(circle, rgba(2,0,36,1) 0%, rgba(255,255,255,1) 0%, rgba(236,175,86,1) 100%);
}
.container{
display: flex;
justify-content: space-around;
}
.container-column{
display: flex;
flex-direction: column;
align-items: center;
}
.box {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.emojiBoxes {
display: flex;
justify-content: center;
margin-top: 20px;
}
.emojiBox {
display: flex;
flex-direction: column;
border: dashed orange;
border-radius: 10px;
margin: 5px;
white-space: pre;
}
/* old feature */
.playerEmojiBoxSingle {
display: flex;
font-size: 200px;
}
.computerEmojiBoxSingle {
display: flex;
font-size: 200px;
}