-
Notifications
You must be signed in to change notification settings - Fork 0
/
username.css
67 lines (67 loc) · 1.17 KB
/
username.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
@font-face {
font-family: Pranshu font;
src: url(./fonts/PixeloidSans-mLxMm.ttf);
}
@font-face {
font-family: emulogic ;
src: url("./fonts/Emulogic-zrEw.ttf");
}
.container{
background-image: url("./assets/back.png");
width: 100vw;
height: 100vh;
background-size: 100% 100%;
}
.enter-name{
position: absolute;
top: 36%;
left: 34%;
color: white;
font-family: Pranshu font;
font-size: 26px;
letter-spacing: 3px;
}
.name input{
position: absolute;
top: 45.5%;
left: 35.5%;
/* height: 10%; */
width: 32%;
background-color: transparent;
font-size: 35px;
color: white;
border: none;
box-shadow: none;
font-family: emulogic ;
letter-spacing: 10px;
color: #FFD81F;
/* caret-color: transparent; */
}
input:focus{
outline: none;
cursor: pointer;
}
.play{
color: #FFD81F;
font-family: Pranshu font;
position: absolute;
top: 63.5%;
left: 41.5%;
font-size: 30px;
letter-spacing: 7px;
height: 7%;
width: 19.5%;
background-color:transparent;
display: flex;
justify-content: center;
align-items: center;
}
.play:hover{
cursor: pointer;
transform: scale(1.1);
}