- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
Latest commit
74 lines (63 loc) · 1.05 KB
/
Copy pathstyles.css
File metadata and controls
74 lines (63 loc) · 1.05 KB
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
* {
box-sizing: border-box;
}
body {
text-align: center;
display: flex;
justify-content: center;
font-family:'avenir','sans-serif';
}
h1 {
margin:8px8px;
background-color: white;
border: solid 2px black;
padding:10px0;
border-radius:5px;
height:60px;
}
.case {
margin-top:100px;
height:470px;
width:320px;
background-color: black;
border: solid 10px black;
border-radius:5px;
box-shadow:08px16px0rgba(0,0,0,0.2),06px20px0rgba(0,0,0,0.19);
}
.buttonbox {
display: flex;
flex-flow: row wrap;
}
button {
border-style: solid;
border-color: lightgrey;
border-width:03px3px0;
outline: none;
margin:10px;
width:55px;
height:55px;
color: white;
text-align: center;
text-decoration: none;
font-size:28px;
border-radius:5px;
}
.wide {
width:130px;
}
button:active {
border: transparent;
}
.number {
background-color: cornflowerblue;
}
.function {
background-color: coral;
}
#clear,
#back {
background-color: mediumorchid;
}
#equals {
background-color: mediumseagreen;
}