-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
53 lines (45 loc) · 876 Bytes
/
styles.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
body{
height: 100%;
background-color: #e7e7e7;
}
.calculator{
color: #fff;
background-color: rgb(149, 149, 149);
height: 450px;
width: 350px;
border: 3px solid #DC7633;
margin: 100px auto;
}
.calculator__screen{
overflow: hidden;
resize: none;
font-size: 50px;
text-align: right;
padding: 0 20px;
margin-left: 50px;
margin-top: 20px;
background-color: #212121;
width: 200px;
height: 60px;
}
.calculator__keys{
padding: 0 10px;
margin-top: 20px;
display: grid;
grid-gap: .25rem;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(5, 1fr);
height: 330px;
}
.calculator__keys button{
font-size: 25px;
border: none;
outline: none;
}
[data-math=add],
[data-operation=equals]{
grid-row: span 2;
}
[data-number="0"]{
grid-column: span 2;
}