-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaddition.css
54 lines (48 loc) · 916 Bytes
/
addition.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
body{
background: lightskyblue;
}
#canvas{
box-sizing:border-box;
display: flex;
align-items: center;
justify-content: center;
background: yellow;
width: 700px;
height: 300px;
margin: 50px auto;
}
#primary-number, #secondary-number{
display:flex;
align-items:center;
justify-content: center;
font-size: 40px;
font-weight: bold;
width: 125px;
height: 125px;
box-sizing: border-box;
}
#primary-number{
border: solid 4px green;
}
#secondary-number{
border: solid 4px blue;
}
#add, #equal{
font-weight: bold;
font-size: 40px;
padding: 5px;
}
input{
border: solid 2px cyan;
width: 150px;
height: 30px;
padding-left: 25px;
}
button{
width: 100px;
height: 35px;
margin: 5px;
background: red;
color: white;
border: 1px solid lightgrey;
}