-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
49 lines (47 loc) · 1.3 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
body {
font-size: 60px;
background-color: white; }
.container {
width: 400px;
margin: 0 auto; }
.container .block {
display: flex;
flex-direction: row;
align-items: stretch;
border-bottom: 1px solid dimgray; }
.container .block:last-child {
border-bottom: 0; }
.container .block.view-area {
height: 205px;
background: dimgray;
display: flex;
flex-direction: column;
justify-content: center;
text-align: right;
color: white; }
.container .block.view-area > * {
padding: 0 40px; }
.container .block.view-area .calculus {
overflow: hidden;
text-overflow: ellipsis; }
.container .block.view-area .calculus.calculated {
color: darkgray;
font-size: 40px; }
.container .block.view-area .answer {
display: none;
overflow: hidden;
word-wrap: break-word; }
.container .block .btn {
flex: 1;
border: 0;
background-color: #e44949;
font-size: 24px;
padding: 40px;
color: white; }
.container .block .btn.dred {
background-color: #de1414; }
.container .block .btn.dred.save {
flex: 5.5; }
.container .block .btn.orange {
background-color: orange; }
/*# sourceMappingURL=style.css.map */