-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathScorePage.css
More file actions
98 lines (88 loc) · 1.31 KB
/
ScorePage.css
File metadata and controls
98 lines (88 loc) · 1.31 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#scorePage {
margin: auto;
display: flex;
flex-direction: column;
align-items: center;
}
h2 {
color: white;
}
#nicknameFormDiv {
margin-top: 10px;
display: flex;
justify-content: center;
width: 70%;
margin: auto;
gap: 5%;
}
#nicknamename {
border: 0px solid;
width: 250px;
height: 48px;
}
#nicknamename:hover {
color: white;
}
#nicknamename:disabled {
opacity: 0;
}
#nicknamename::placeholder {
color: lightgray;
text-align: center;
font-weight: lighter;
}
input {
text-align: center;
font-weight: bold;
}
.scorePageMenuButton {
position: fixed;
bottom: 2%;
left: 4%;
}
.playAgainButton {
position: fixed;
bottom: 2%;
right: 4%;
}
.saveScoreBtn:disabled {
opacity: 0;
}
#finalScore {
height: 70px;
}
@media (min-width: 320px) and (max-width: 960px) {
.scorePageMenuButton {
position: relative;
align-self: center;
bottom: 0%;
left: 0%;
}
.playAgainButton {
position: relative;
bottom: 0%;
left: 0%;
}
#nicknameFormDiv {
flex-direction: column;
}
#nicknamename {
width: auto;
margin-bottom: 10px;
}
#finalScore {
height: 40px;
}
#catPNG {
height: 250px;
width: 250px;
}
}
@media only screen and (max-device-height: 610px) {
#catPNG {
display: none;
}
#scorePage {
margin-top: 20%;
}
}