-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (38 loc) · 771 Bytes
/
style.css
File metadata and controls
46 lines (38 loc) · 771 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
* {
margin: 0;
padding: 0;
}
.container {
background-color: royalblue;
background-image: url("https://i1.faceprep.in/ProGrad/guess-number-bg.png");
background-size: cover;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100vw;
height: 100vh;
color: white;
}
#position {
padding: 6px;
text-align: center;
}
.button {
padding: 7px;
background-color: lightcoral;
color: white;
border: 0;
cursor: pointer;
}
.button:hover {
color: lightcyan;
}
#message {
font-size: 1.3em;
background-color: orange;
padding: 5px 15px;
border-radius: 2px;
display: none;
text-align: center;
}