-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (90 loc) · 1.39 KB
/
Copy pathstyle.css
File metadata and controls
105 lines (90 loc) · 1.39 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
@font-face {
font-family: 'digital-clock-font';
src: url('fonts/digital-7-webfont.ttf');
}
body {
padding: 0;
border: 0;
background: #E9EAE4;
display: flex;
justify-content: center;
align-items: center;
}
.numpad {
margin: 15px;
}
.title p {
font-size: 50px;
font-family: 'Black Ops One', cursive;
font-weight: bold;
margin: 5px;
padding: 10px 0;
text-align: center;
}
.numpad button {
height: 60px;
width: 95px;
margin: 8px;
display: inline-block;
padding: 15px 25px;
font-size: 24px;
font-weight: bold;
cursor: pointer;
text-align: center;
text-decoration: none;
outline: none;
color: #010101;
background: #ededed;
border: none;
border-radius: 5px;
box-shadow: 5px 7px #252E2B;
}
.numpad button:active {
box-shadow: 2px 5px #252E2B;
transform: translateY(4px);
}
.display {
background-color: black;
color: #E67628;
width: 450px;
height: 160px;
margin: 0 auto;
border: solid 1px black;
}
.display p {
font-family: 'digital-clock-font';
text-align: right;
}
#result {
padding-top: 110px;
padding-right: 12px;
font-size: 48px;
}
/*#previous {
padding-top: 10px;
padding-right: 15px;
font-size: 26px;
}
*/
.container {
position: relative;
top: 50px;
border-radius: 10px;
border: solid 5px;
background: #C5C6B6;
}
#div,
#mul,
#sub,
#plus,
#equal {
background: #F4EFDB;
}
#clear,
#backspace {
background: #C45A10;
}
#hidden1,
#hidden2 {
visibility: hidden;
}