-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (55 loc) · 1.04 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Agbalumo&family=Pixelify+Sans&family=Signika&family=Tilt+Neon&display=swap');
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
font-family: 'Pixelify Sans', sans-serif;
font-family: 'Tilt Neon', sans-serif;
display: flex;
justify-content: center;
background-color: magenta;
}
h1,h4{
margin: 30px auto;
}
button{
margin: 0 auto;
width: 80px;
height: 25px;
font-size: 18px;
font-weight: 700;
color: black;
border: 1px solid black;
border-radius: 3px;
}
input{
width: 200px;
margin: auto;
font-size: 20px;
text-align: center;
color: black;
border: 2px solid black;
}
::placeholder{
opacity: 100%;
color: gray;
}
p{
padding-top: 20px;
}
#newGame{
width: 120px;
}
.container{
display: flex;
flex-direction: column;
justify-content: center;
width: 300px;
background-color: greenyellow;
border: 3px solid black;
border-radius: 5px;
margin-top: 20px;
padding: 30px 0;
}