-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgameover.css
More file actions
46 lines (40 loc) · 733 Bytes
/
gameover.css
File metadata and controls
46 lines (40 loc) · 733 Bytes
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
body
{
background: url("../Assets/bg.png") center center fixed, url("../Assets/2coloredbg.png") center center fixed;
background-repeat: no-repeat, no-repeat;
background-size: 100%, 100% 100%;
}
nav{
width: 25%;
max-height: 80vh;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
input{
text-align: center;
border: solid 0.3vw #c9c9c9;
transition: border 0.3s;
}
input:focus {
outline: none;
border: solid 0.3vw #222222;
}
button {
text-align: center;
width:15%;
text-overflow: ellipsis;
border:none;
background: #c9c9c9;
color: #222222;
}
button:hover {
width: 15%;
background: #222222;
color: #c9c9c9;
}
#nickName {
margin-left: 25%;
width: 50%;
}