-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
57 lines (50 loc) · 1.11 KB
/
main.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
body{
background-color: rgb(214, 214, 214);
}
.container{
width: 250px;
height: 400px;
margin: 80px auto;
border-radius: 10px;
background-color: rgb(214, 214, 214);
box-shadow: 5px 5px 10px rgb(137, 127, 127), -5px -5px 10px white;
}
.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 5px 5px 10px #babecc, inset -5px -5px 10px white;
}
.button{
margin: 15px 0 0 5px;
width: 42px;
height: 42px;
border: 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 #babecc, inset -1px -1px 2px white;
}
.clearButton{
background: red;
color: white;
}
.mathbutton{
background: black;
color: white;
}