-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
43 lines (40 loc) · 675 Bytes
/
styles.css
File metadata and controls
43 lines (40 loc) · 675 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
body {
font-family: sans-serif;
background: lightgrey;
color: black;
line-height: 1.5;
}
h1 {
font-size: 3rem;
letter-spacing: .1rem;
text-transform: capitalize;
line-height: 1.25;
margin-bottom: 0.75rem;
font-family: sans-serif;
}
main {
min-height: 100vh;
display: grid;
place-items: center;
}
.container {
text-align: center;
}
#value {
font-size: 6rem;
font-weight: bold;
}
.btn {
background: transparent;
color: black;
padding: 0.5rem 0.75rem;
font-size: .9rem;
border: 2px solid black;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
border-radius: 10px;
margin: 0.5rem;
}
.btn:hover {
color: white;
background: black;
}