-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
58 lines (51 loc) · 1.11 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
body{
background-color: rgb(214,214,214);
}
.container{
width: 250px;
height: 400px;
margin: 80px auto;
border-radius: 10px;
background:rgb(214,214,214);
box-shadow:5px 5px 10px #b6a9a9, -5px -5px 10px #ffffff;
}
.cal-box{
width: 200px;
margin: 20px auto;
}
#display{
border:none;
outline: none;
color: black;
text-align: right;
font-weight: 600;
padding: 15px;
margin: 30px 0 20px 0;
background: transparent;
box-shadow: inset 2px 2px 5px #babecc,inset -5px -5px 10px #ffffff;
}
.button{
margin:15px 0 0 5px;
width: 42px;
height: 42px;
border: none;
outline: none;
font-size: 18px;
font-weight: bold;
cursor: pointer;
border-radius: 8px;
background: rgb(214,214,214);
box-shadow: 5px 5px 10px #babecc, -5px -5px 10px #faf4f4;
display: inline-block;
}
.button:active{
box-shadow: inset 1px 1px 2px #babeec,inset -1px -1px 2px #ffffff;
}
.clearButton{
background:red;
color: white;
}
.mathbutton{
background: black;
color: white;
}