-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (51 loc) · 1.36 KB
/
style.css
File metadata and controls
62 lines (51 loc) · 1.36 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
56
57
58
59
60
61
62
body{
margin:0;
display: flex;
justify-content: center;
height: 100vh;
align-items: center;
text-align: center;
background-color: peachpuff;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.form{
background-color: white;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
border-radius: 10px;
margin: 10px;
}
.input{
display: block;
width:100%;
box-sizing: border-box;
font-size: 25px;
text-align: center;
padding: 10px;
border: solid 8px peachpuff;
color: green
}
.input::placeholder{
color: lightslategray;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.btn{
background-color: peachpuff;
color: white;
border: none;
padding: 10px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
margin: 20px;
text-size-adjust: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
border-radius: 10px;
cursor: pointer;
}
.btn:hover{
filter: brightness(0.9);
}
.score{
color:peachpuff;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
text-align: right;
}