-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
47 lines (46 loc) · 756 Bytes
/
styles.css
File metadata and controls
47 lines (46 loc) · 756 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
47
body {
padding: 0;
background-color: rgb(39, 39, 207);
font-family: "Inter", sans-serif;
}
#game-container {
background-color: white;
display: inline-block;
width: 750px;
height: 400px;
margin: auto 25%;
text-align: center;
}
#guessTheNumber {
font-size: 2rem;
font-weight: bold;
}
#triesLeft {
font-size: 1.5rem;
font-weight: bold;
}
#inputField {
margin: 25px auto;
width: 100px;
}
#btn {
margin: 25px auto auto 5px;
}
#gameMessage {
background-color: red;
color: white;
font-size: 1.5rem;
padding: 30px 50px;
display: block;
max-width: max-content;
margin: 0px 1px;
}
.hideMessage {
visibility: collapse;
display: none;
}
.gameBox {
display: flex;
align-items: center;
justify-content: center;
}