-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
117 lines (103 loc) · 1.86 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
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
html,
body {
margin: 0;
padding: 0;
height: 100%;
}
body {
background-color: #454545;
font-family: 'Roboto', sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.calculator-container {
display: flex;
flex-direction: column;
background-color: #5D3891;
border: 2px solid black;
border-radius: 8px;
margin: auto;
width: 370px;
height: 570px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 2px 6px 10px rgba(0, 0, 0, 0.75);
}
.screen {
padding: 20px;
margin: 20px;
background-color: #F5F5F5;
color: #252525;
font-size: 32px;
font-weight: bold;
width: 300px;
height: 36px;
border-radius: 8px;
border: 2px solid black;
display: flex;
justify-content: flex-end;
overflow: auto;
}
.keys-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.keys-1,
.keys-2,
.keys-3,
.keys-4,
.keys-5 {
display: flex;
flex-direction: row;
}
.keys-item {
margin: 3px;
padding: 10px;
background-color: rgb(60, 60, 60);
color: #E8E2E2;
font-size: 28px;
border-radius: 8px;
height: 60px;
width: 60px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
user-select: none;
}
.top-keys {
background-color: #b1b1b1;
color: black;
}
.side-keys {
background-color: #F99417;
color: #E8E2E2;
}
.zero-key {
width: 145px;
}
.keys-item:hover {
box-shadow: 0 0 12px rgba(24, 24, 24, 0.7) inset;
}
.credit {
color: white;
font-size: 26px;
font-weight: bold;
display: flex;
align-items: center;
position: absolute;
bottom: 0;
margin-bottom: 20px;
}
a {
margin-left: 30px;
}
.git {
height: 40px;
width: 40px;
}