-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.css
More file actions
78 lines (75 loc) · 1.08 KB
/
base.css
File metadata and controls
78 lines (75 loc) · 1.08 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
75
76
77
78
html,body{
position: relative;
width: 100%;
height: 96%;
background: #f5f5f5;
margin:0;
padding: 0;
}
*{
box-sizing: border-box;
}
.keyboard{
position: absolute;
width: 100%;
border:solid 1px #000;
display: table;
bottom: 0;
}
.keyboard ul.container {
display: inline-block;
float: right;
height: 100%;
margin: 0;
padding: 0;
}
.keyboard ul#numbers {
flex-direction: row;
flex-wrap:wrap;
float: left;
display: flex;
align-items:stretch;
height: 100%;
margin: 0;
padding: 0;
background: #eee;
text-align: center;
}
.keyboard ul#numbers li{
width: 33%;
padding: 20px;
height: 25%;
list-style: none;
background: #eee;
cursor: pointer;
}
.keyboard ul.container li{
list-style: none;
text-align: center;
font-size: 20px;
height: 100%;
padding: 20px;
cursor: pointer;
}
.keyboard ul.container li:active{
background: #9CCC65;
color: #fff;
}
#numbers{
width: 60%;
}
#arthmetic{
width: 20%;
background: green;
color: #fff;
}
#trigno{
width: 20%;
background: #000;
color: #fff;
}
#math{
float: right;
font-size: 100px;
border: none !important;
}