-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguess.css
More file actions
55 lines (51 loc) · 1.13 KB
/
Copy pathguess.css
File metadata and controls
55 lines (51 loc) · 1.13 KB
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
body {
background-color: #8af3f1;
padding: 45px;
}
.container {
background-color: #717dec;
padding: 8px;
border: 1px solid #1224eb;
border-radius: 10px;
text-align: center;
margin: auto;
height: 380px;
max-width: 500px;
margin-top: 80px;
justify-content: center;
align-items: center;
box-shadow: 0 8px 16px rgba(105, 19, 243, 0.7),
0 -8px 16px rgba(105, 19, 243, 0.7),
8px 0 16px rgba(105, 19, 243, 0.7),
-8px 0 16px rgba(105, 19, 243, 0.7);
}
#guess {
width: 250px;
height: 39px;
font-size: 18px;
margin-top: 20px;
padding: 5px;
text-align: center;
border: 2px solid #070373;
border-radius: 8px;
}
#submit {
background-color: #8af3f1;
height: 40px;
width: 100px;
margin: 20px;
text-align: center;
align-items: center;
justify-content: center;
border-radius: 10px;
cursor: pointer;
}
#message {
height: 30px;
color: black;
font-size: 20px;
text-align: center;
font-weight: bold;
align-items: center;
justify-content: center;
}