-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
46 lines (40 loc) · 778 Bytes
/
main.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
body {
background-color: darkseagreen;
margin: 0;
}
div {
width: 20rem;
margin: auto;
margin-top: 5%;
padding: 0.8rem;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
background-color: darkseagreen;
text-align: center;
border: 0.10rem dotted black;
}
h1 {
text-align: center;
font-size: 1.5rem;
}
p{
font-size: 0.8rem;
}
input {
display: inline-block;
font-size: 1.5rem;
width: 7.5rem;
text-align: center;
border: 0.1rem solid black;
border-radius: 0.4rem;
}
button {
background-color: rgb(121, 156, 121);
border: 0.1rem solid black;
border-radius: 0.4rem;
font-size: 1.5rem;
width: 7.5rem;
cursor: pointer;
}
#output {
text-align: center;
}