-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
78 lines (67 loc) · 1.17 KB
/
style.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
* {
padding: 0;
margin: 0;
}
body {
width: 100vw;
height: 100vh;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
background-color: #7e7a6e;
font-family: sans-serif;
}
/* common styles end */
/* calculator */
.calculator {
width: 300px;
padding-bottom: 15px;
border-radius: 7px;
background-color: rgb(31, 58, 40);
box-shadow: 5px 8px 8px -2px rgba(0, 0, 0, 0.61);
}
/* calculator style end */
/* display */
.display {
width: 100%;
height: 80px;
border: none;
box-sizing: border-box;
padding: 10px;
font-size: 2rem;
background-color: #d6dbc2f1;
color: #000;
text-align: right;
border-top-left-radius: 7px;
border-top-right-radius: 7px;
}
/* display style end */
/* row */
.row {
display: flex;
justify-content: space-between;
}
/* row style end */
/* button */
button {
width: 50px;
height: 50px;
border-radius: 50%;
border: none;
outline: none;
font-size: 1.5rem;
background-color: #d6dbc2f1;
color: #000;
margin: 10px;
}
button:hover {
cursor: pointer;
}
/* button style end */
/* operator */
.operator {
background-color: #d6dbc2f1;
color: #000;
}
/* operator style end */