-
Notifications
You must be signed in to change notification settings - Fork 860
Expand file tree
/
Copy pathmain.css
More file actions
126 lines (120 loc) · 1.97 KB
/
main.css
File metadata and controls
126 lines (120 loc) · 1.97 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
// Stiziles
html, body {
background: rgb(255, 255, 255);
}
.calculator {
height: 00;
background: blue;
}
.screen {
background-color: #0889d4bb;
color: #190d08;
font-size: 50px;
padding: 30px 10px;
text-align: right;
font-weight: lighter;
}
.formulae {
background-color: #031d64;
padding: 20px 10px;
text-align: right;
font-weight: lighter;
min-height: 18px;
}
.highlight {
transform: scale(0.9);
}
.group {
padding: 7px 8px 8px 8px;
font-size: 14px;
border-radius: 12px;
margin: 0 3px;
}
.group.divide {
background-color: #cb7dc9;
}
.group.substract {
background-color: #fcb064;
}
.group.add {
background-color: #fb96cf;
}
.group.multiply {
background-color: #68cef1;
}
.keyboard {
height: 300px;
}
.keyboard-row {
display: table;
width: 100%;
}
.key {
display: table-cell;
vertical-align: middle;
text-align: center;
padding: 10px 0;
font-weight: lighter;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
transition: all 0.2s;
}
.key-number {
border: 1px solid #085899b4;
width: 33%;
color: #919191;
font-size: 30px;
}
.key-operator {
width: 25%;
color: rgb(255, 255, 255);
padding: 20px 0;
}
.operator {
padding-top: 8px;
padding-bottom: 8px;
border-radius: 20px;
height: 60px;
display: inline;
}
.operator.divide {
background-color: #0fa6b1;
padding-left: 12px;
padding-right: 12px;
}
.operator.substract {
background-color: #14d3da;
padding-left: 14px;
padding-right: 14px;
}
.operator.add {
background-color: #149acf;
padding-left: 12px;
padding-right: 12px;
}
.operator.multiply {
background-color: #09baf5;
padding-left: 13px;
padding-right: 13px;
}
.key-action {
width: 50%;
padding: 10px;
}
.action {
border-radius: 10px;
padding: 10px 0;
}
.action.back {
color: #d68086;
border: 2px solid #d68086;
font-size: 20px;
}
.action.equal {
color: #9ed8a6;
border: 2px solid #9ed8a6;
font-size: 20px;
}