-
Notifications
You must be signed in to change notification settings - Fork 0
/
계산기.css
74 lines (66 loc) · 1.25 KB
/
계산기.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.calculator {
width: 380px;
height: 550px;
border-radius: 10px;
padding: 30px 20px;
}
.display {
background-color: rgb(43, 43, 43);
text-align: right;
height: 100px;
width: 100%;
font-size: 50px;
padding: 25px 15px;
}
.buttons {
height: 75px;
display: flex;
}
.blackbutton {
padding: 20px 0px 0px 0px;
border: solid 1px;
background-color: rgb(94, 94, 94);
text-align: center;
height: 75px;
width: 85px;
font-size: 30px;
}
.yellowbutton {
padding: 20px 0px 0px 0px;
border: solid 1px;
background-color: rgb(255, 174, 0);
text-align: center;
height: 75px;
width: 85px;
font-size: 30px;
}
.graybutton {
padding: 20px 0px 0px 0px;
border: solid 1px;
background-color: rgb(172, 172, 172);
text-align: center;
height: 75px;
width: 85px;
font-size: 30px;
}
.doublebutton {
padding: 20px 0px 0px 35px;
border: solid 1px;
background-color: rgb(172, 172, 172);
text-align: left;
height: 75px;
width: 170px;
font-size: 30px;
}