-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (40 loc) · 726 Bytes
/
style.css
File metadata and controls
43 lines (40 loc) · 726 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
*{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.calculator{
width: 600px;
margin: 50px auto;
}
.numbers{
border: 1px solid #ccc;
margin-top: 10px;
}
.numbers__row{
width: 100%;
overflow: hidden;
letter-spacing: -4px;
text-align: center;
}
.numbers__btn{
text-align: center;
padding: 18px 0;
display: inline-block;
width: 33.33333%;
background-color: #cdcdcd;
border: 1px solid blueviolet;
}
.numbers__btn:hover{
background-color: #ddd;
}
.result{
border: 3px solid red;
font-size: 30px;
text-align: center;
}
.expression{
border: 3px solid blue;
font-size: 20px;
text-align: center;
}