-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
129 lines (113 loc) · 2.09 KB
/
style.css
File metadata and controls
129 lines (113 loc) · 2.09 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
@font-face {
font-family: 'digital7';
src: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/11525/digital-7.ttf') format('truetype');
}
body{
font-family: 'Roboto Mono' ;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background : black;
}
.wrapper{
width: 430px;
margin: 0 auto;
background-color: #800020;
height: 520px;
text-align: center;
color: white;
padding-top:10px;
border-radius: 3px;
border-top: 3px solid black;
border-bottom: 3px solid black;
border-right: 1px solid black;
border-left: 1px solid black;
}
#screen{
border-left: 30px solid #ccc;
border-right: 30px solid #ccc;
border-top: 10px solid #ccc;
border-bottom: 10px solid #ccc;
width: 242px;
height: 60px;
border-radius: 5px;
margin-left: -2px;
margin-top: px;
color: black;
font-size: 3.5rem;
line-height: 4.5rem;
font-family: digital7;
overflow: hidden;
padding-right: 40px;
}
#screenBorder{
width: 327px;
background-color: #b0b78e;
border: 8px solid #000;
margin: 5px auto;
line-height: 2;
text-align:right;
padding: 0 10px 0 0;
height: 80px;
border-radius: 5px;
}
.keypad{
width: 90%;
height: 330px;
margin: 30px auto;
display:flex;
justify-content: space-between;
flex-wrap: wrap;
background-color: #800020;
padding: 5px;
border-radius: 5px;
}
.key{
background-color: #404133;
border: 3px solid black;
border-radius: 3px;
width: 60px;
height: 50px;
line-height: 50px;
color: white;
font-size: 1.5em;
position: relative;
}
.key:hover{
background-color: #303123;
cursor: pointer; cursor: hand;
}
.special{
background-color: #c8953c;
}
.special:hover{
background-color: #b8852c;
}
#equals:hover{
background-color: red;
}
#modeArea {
width: 90%;
background-color: black;
padding-top: 5px;
margin: 0 auto;
text-align: center;
font-size: 10px;
height: 110px;
border-radius: 5px;
}
#modeArea table{
border-collapse: collapse;
}
#modeArea td{
border: 1px solid white;
width:25px;
}
.casio{
text-align: left;
margin-left: 25px;
margin-bottom: 10px;
}