-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
47 lines (39 loc) · 741 Bytes
/
style.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
47
body {
margin: 0;
display: flex;
flex-direction: column;
place-items: center;
min-width: 320px;
min-height: 100vh;
background-color: antiquewhite;
}
label {
font-size: large;
margin-bottom: 1rem;
}
h1 {
font-size: 3rem;
}
button {
border-radius: 3px;
border: 1px solid transparent;
/* padding: 0.6em 1.2em; */
margin-top: 1rem;
font-size: 1em;
font-weight: 500;
font-family: inherit;
background-color: #d49ad0;
cursor: pointer;
transition: border-color 0.25s;
color: #ffffff;
}
button:hover {
border-color: #ffffff;
}
button:focus,
button:focus-visible {
outline: 4px auto -webkit-focus-ring-color;
}
#display{
text-align: center;
}