-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (58 loc) · 1.02 KB
/
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
@import url('https://fonts.googleapis.com/css?family=poppins:300,400,500,600,700,800,900&display=swap');
*
{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family:'Poppins',sans-serif;
}
body
{
display: flex;
justify-content: center;
align-items:center;
min-height:100vh;
background: white;
}
.calculator
{
display:grid;
background: black;
border-style: solid;
border-width: 40px 50px 30px 50px;
border-color:dodgerblue;
}
.calculator .value
{
grid-column: span 4;
height: 150px;
text-align: right;
border:none;
outline: none;
font-size: 18px;
}
.calculator span
{
display: grid;
width: 80px;
height: 80px;
color: white;
background: black;
place-items: center;
}
.calculator span.active
{
background: #74ff3b;
color: #111;
}
.calculator span.clear
{
background: #ff3077;
}
.calculator span.plus
{
}
.calculator span.equal
{
background: black ;
}