-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
118 lines (100 loc) · 1.73 KB
/
styles.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
body {
align-items: center;
justify-content: center;
background-color: #fff3c4;
}
.hands {
margin-top: 30px;
width: 100%;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.hand {
width: 20vmax;
max-width: 250px;
/* height: 30rem;*/
transition: 0.2s;
}
.hand:hover {
transform: scale(1.1);
}
.message {
text-align: center;
margin: 20px;
font-family: "Varela Round", sans-serif;
font-size: 50px;
color: #ef9645;
}
.lefthandscore {
margin-right: 10vh;
}
.indicator-mobile {
visibility: hidden;
max-height: 0px;
}
@media screen and (max-width: 1000px) {
.hand {
width: 27vw;
}
.indicator-pc {
visibility: hidden;
max-width: 0px;
padding: 0px;
margin: 0px;
}
.indicator-mobile {
visibility: visible;
max-height: 40px;
}
}
.scoreboard {
max-height: calc(60vh - 30px);
overflow: hidden;
background-color: linear-gradient(to bottom, transparent 0%, black 100%);
}
.pop {
transform: scale(1.25) !important;
transition: 0.05s;
}
.scoreboard-content {
display: flex;
justify-items: center;
justify-content: center;
transition: all 1s;
animation: slide-down 0.4s ease;
}
.scoreboard-message {
min-width: 20vw;
padding: 10px;
}
.resulthand-left {
width: 100px;
justify-self: right;
}
.resulthand-right {
width: 100px;
justify-self: left;
}
@media screen and (max-width: 1000px) {
.scoreboard-message {
font-size: 25px;
min-width: 10vw;
}
.resulthand-left {
width: 50px;
}
.resulthand-right {
width: 50px;
}
}
.fadeout {
position: fixed;
bottom: 0;
margin: 0px;
padding: 0px;
width: 100vw;
background-image: linear-gradient(#fff3c400, #fff3c4ff, #fff3c4ff);
height: 30vh;
}