-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (40 loc) · 766 Bytes
/
style.css
File metadata and controls
48 lines (40 loc) · 766 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
44
45
46
47
48
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap');
* {
margin: 0;
padding: 0;
font-family: Quicksand;
}
.main {
position: absolute;
display: flex;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
justify-content: center;
text-align: center;
flex-direction: column;
width: 350px;
height: 400px;
background: white;
border-radius: 5px;
box-shadow: 5px 5px 5px 5px #d2e5f5;
}
#value {
font-size: 100px;
}
/* button */
.buttons {
padding: 10px;
}
button {
padding: 5px;
border: 1px solid black;
color: black;
background: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
color: white;
background: black;
}