-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
52 lines (45 loc) · 862 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
48
49
50
51
52
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
box-sizing: border-box;
font-family: "Poppins", sans-serif;
margin: 0;
padding: 0;
font-size: 18px;
}
.logo{
display: flex;
align-items: center;
justify-content: center;
padding: 10px;
font-size: 1.8rem;
}
main {
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.container {
border-radius: 14px;
padding: 20px;
border: 3px solid #121212;
}
.calculator-button {
height: 50px;
width: 50px;
border-radius: 10px;
cursor: pointer;
margin: 2px;
background-color: #FFFFFF;
display: flex;
align-items: center;
justify-content: center;
}
.equal-btn {
background-color: rgb(254, 160, 10);
color: #FFFFFF;
}
section > div {
display: flex;
}