-
Notifications
You must be signed in to change notification settings - Fork 0
/
calc.css
100 lines (83 loc) · 1.41 KB
/
calc.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
html,body {height:100%; margin: 0px;}
@font-face{
font-family: 'lcd';
src: url('alarm clock.ttf');
}
body { display:flex;
flex-direction:row;
background-color:#003c2e;
}
#left {
display:flex;
flex-direction:column;
width:20%;
}
#right {
display:flex;
flex-direction:column;
//background-color:#C0C0D0;
flex-grow:1;
}
#disp {
display:flex;
flex-direction:row;
background-color:#CCFC0020;
height:64px;
min-height:24px;
max-height:128px;
flex-grow:1;
font-family:lcd;
font-size: 8vh;
color: #17d5e0;
justify-content: flex-end;
align-items: flex-end;
}
#menu {
display:flex;
flex-direction:row;
background-color:#FFDDDD10;
padding:1px;
flex-grow:0;
height:24px;
min-height:24px;
}
#kzone {
flex-grow:1;
display:flex;
flex-direction:row;
}
#num {
flex-basis:70%;
}
#func {
flex-basis:30%;
}
.keyb {
display:flex;
flex-direction:column;
text-align:center;
}
.row {
flex-grow:1;
display:flex;
flex-direction:row;
//background-color:#FF000010;
justify-content: space-around;
margin:1%;
}
.row span {
border :1px solid;
border-color:#00581b;
color:#16d877;
flex-grow:1;
width:31%;
max-width:31%;
min-width:31%;
display: flex;
justify-content: center;
align-items: center;
font-size: 10vmin;
font-stretch: extra-expanded;
font-weight: 100;
border-radius: 10%;
}