-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
52 lines (43 loc) · 902 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
body{
margin: 0;
padding: 0;
background-image: url("./assets/bg3.jpg");
background-size: 100%;
/* background-repeat: no-repeat; */
font-family: 'Roboto', sans-serif;
}
#logo{
display: flex;
justify-content: center;
}
#input-box{
padding: 12px 20px;
width: 300px;
}
#play-button{
width: 170px;
cursor: pointer;
}
#info-button{
position: absolute;
top: 30px;
right: 50px;
padding: 12px 20px;
cursor: pointer;
}
.button{
border: 3px solid white;
background-color: rgba(255, 255, 255, 0.3);
color: white;
border-radius: 2px;
font-size: 16px;
font-weight: 900;
padding: 12px;
margin: 10px auto;
margin-left: 80px;
}
#name-input{
margin: auto;
width: 50%;
}