-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
113 lines (85 loc) · 1.61 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
* {
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.calculator {
width: 350px;
height: 500px;
/* border: 2px solid red; */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: black;
}
.result {
/* border: 2px solid blue; */
width: 300px;
height: 150px;
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
}
.result_value {
margin-bottom: 10px;
text-align: right;
font-size: 60px;
width: 220px;
height: 50px;
background-color: black;
border: 0px;
}
input::placeholder {
color:white
}
.input {
/* border: 2px solid blue; */
width: 300px;
height: 300px;
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
}
.input_box {
/* border: 2px solid green; */
width: 250px;
height: 50px;
display: flex;
justify-content: space-evenly;
}
.btn {
width: 50px;
height: 50px;
border-radius: 50%;
font-size: 25px;
border: 0px;
}
#btn_0 {
width: 110px;
height: 50px;
border-radius: 50px;
font-size: 30px;
text-align: left;
border: 0px;
padding-left: 18px;
background-color: rgb(91, 90, 90);
color: white;
}
#btn_white_gray {
background-color: rgb(220, 218, 218);
}
#btn_yellow {
background-color: rgb(245, 178, 54);
color: white;
}
#btn_dark_gray {
background-color: rgb(91, 90, 90);
color: white;
}