-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
72 lines (59 loc) · 920 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
* {
box-sizing: border-box;
}
body {
background-color: #3399ff;
font-family: "Verdana";
font-size: 120%;
margin: 0;
}
button {
font-size: 150%;
border: 1px solid #000000;
padding: 9px;
margin-top: 5px;
border-radius: 15px;
cursor: pointer;
}
button:disabled {
cursor: default;
}
hr {
margin-top: 1px;
margin-bottom: 1px;
border-width: 2px;
}
div.container {
display: flex;
justify-content: center;
margin-top: 50px;
}
div.main {
background-color: #ffffff;
padding: 1%;
}
span.error_message {
color: red;
font-size: 80%;
line-height: 1;
}
div.numbers {
width: 100%;
height: 76px;
text-align: right;
}
div.result {
margin-right: 7px;
}
div.top_buttons, div.main_buttons {
margin-top: 5px;
}
button.first_line {
font-size: 90%;
}
button.backspace {
padding: 9px 2px;
}
button.minus {
padding: 9px 12px;
}