-
Notifications
You must be signed in to change notification settings - Fork 0
/
calculator.css
89 lines (72 loc) · 1.73 KB
/
calculator.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#container{
display: flex;
justify-content:space-around;
flex-direction: column;
margin: auto;
height: 500px;
width: 400px;
background-color: blanchedalmond;
border: solid black;
border-radius: 10px;
}
#action-container{
display: flex;
flex-direction: row;
justify-content: space-around;
height: 50px;
width: 300px;
}
#clear{
background-color: rgb(176, 211, 23);
height: 50px;
width: 180px;
margin-left: 200px;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-weight: bold;
font-size: 20px;
}
#backspace{
background-color: red;
height: 50px;
width: 130px;
margin-left: 50px;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-weight: bold;
font-size: 20px;
}
#display{
background-color: white;
border: solid black;
border-radius: 10px;
height: 30px;
width: 300px;
margin-top: 10px;
margin-left: 50px;
padding-top: 15px;
padding-bottom: 15px;
text-align: center;
font-size: 20px;
font-weight: bold;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
#button-area{
display: flex;
flex-wrap: wrap;
margin-left: 50px;
margin-right: 50px;
max-width: 300px;
max-height: 300px;
}
button{
height: 70px;
width: 70px;
border: 3px solid black;
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-size: 20px;
border-radius: 10px;
margin-bottom: 5px;
margin-right: 5px;
}
button:active{
color:red;
}