-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
83 lines (73 loc) · 1.36 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
body{
display:flex;
justify-content: center;
align-items:center;
font-family: monospace,'Courier New', Courier;
height: 800px;
}
.body{
background-color: #a8a3a3;
width: 440px;
min-height:640px;
border-radius: 25px;
border: solid black;
padding: 20px 30px 20px 30px;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap:15px;
}
.screen{
flex:2 1 auto;
background-color: #cfc6c6;
min-width: 400px;
min-height:150px;
border: solid black;
border-radius: 25px;
text-align: right;
padding-top:40px;
padding-right:20px;
box-sizing: border-box;
font-size: 40px;
word-wrap: break-word;
word-break: break-all;
}
#ac, #ce{
flex:auto;
width: 170px;
height: 60px;
border: solid black;
border-radius: 15px;
text-align: center;
box-sizing: border-box;
font-size: larger;
transition: all 500ms;
}
#ac{
background-color: #e39494;
}
#ce{
background-color: #8c9adb;
}
.number{
width:80px;
height:80px;
flex:auto;
background-color: #dbd5d5;
font-size: 20px;
transition: all 500ms;
}
.select{
transform: scale(1.001);
border: solid 2px;
}
.number.select{
background-color: #bdb7b7;
}
#ac.select{
background-color: #b57676;
}
#ce.select{
background-color: #7783bd;
}