-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
80 lines (71 loc) · 1.35 KB
/
styles.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
* {
box-sizing: border-box;
}
.calculator {
display:flex;
flex-direction:column;
justify-content: center;
align-items:center;
width:400px;
text-align:center;
min-height: 60vmin;
font-size:35px;
font-family:Arial, Helvetica, sans-serif;
box-shadow: -5px 4px 23px -8px rgba(0,0,0,0.75);
}
.row {
display: flex;
flex-direction: row;
width:100%;
justify-content:center;
border-bottom:2px solid black;
}
.left-button {
background-color:#d8d9db;
border-right: 2px solid black;
color:black;
}
.right-button {
color:white;
background-color:#df974c;
}
.button {
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
height:100px;
text-align: center;
width:25%;
}
.left-button:hover {
background-color: #ebebeb;
}
.left-button:active {
background-color: #bbbcbe;
}
.right-button:hover {
background-color: #dfb07e;
}
.right-button:active {
background-color: #dd8d37;
}
.triple {
width: 75%;
}
.display {
height:75px;
display:flex;
justify-content:flex-end;
align-items: flex-end;
flex-direction:row;
width:100%;
color:white;
padding: 10px;
background-color: black;
font-size:35px;
font-family:'Courier New', Courier, monospace;
}
.last {
border-bottom: none;
}