-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCalculator.css
121 lines (119 loc) · 3.04 KB
/
Calculator.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
118
119
120
121
html {
box-sizing: border-box;
height: 100%;
}
body {
overflow: hidden;
align-items: center;
background-color: lightskyblue;
border: 4px grey;
display: flex;
height: inherit;
justify-content: center;
}
.main-frame {
backdrop-filter: blur(4.5px);
-webkit-backdrop-filter: blur(4.5px);
border-radius: 15px;
box-shadow: 0 4px 25px rgba(40, 40, 40, 0.1);
background-color: lightblue;
backdrop-filter: blur(3px);
-webkit-backdrop-filter: blur(3px);
background: rgba(255, 255, 255, 0.30);
border: 2px rgba(255, 255, 255, 0.40);
flex-basis: 600px;
height: 700px;
padding: 25px 40px;
}
#dzialanie {
backdrop-filter: blur(4.5px);
-webkit-backdrop-filter: blur(4.5px);
background: rgba(255, 255, 255, 0.70);
border: 2px rgba(255, 255, 255, 0.01);
box-shadow: 0 4px 25px rgba(40, 40, 40, 0.1);
background-color: lightgray;
font-family: "Ubuntu", sans-serif;
font-weight: 300;
font-style: normal;
font-size: 15px;
overflow: auto;
padding: 15px;
text-align: right;
width: 600px;
}
#wynik {
backdrop-filter: blur(4.5px);
-webkit-backdrop-filter: blur(4.5px);
background: rgba(255, 255, 255, 0.70);
border: 2px rgba(255, 255, 255, 0.01);
box-shadow: 0 4px 25px rgba(40, 40, 40, 0.1);
background-color: lightgray;
font-family: "Ubuntu", sans-serif;
font-weight: 700;
font-style: normal;
font-size: 35px;
overflow: auto;
padding: 35px;
text-align: right;
width: 560px;
}
.special{
background-color: rgba(52, 52, 52, 0.64);
color: whitesmoke;
border: 1.4px solid black;
border-radius: 5px;
width: 154px;
height: 90px;
font-family: "Ubuntu", sans-serif;
font-weight: 500;
font-style: normal;
font-size: 20px;
transition-duration: 0.4s;
cursor: pointer;
text-align: center;
}
.special:hover{
background-color: rgba(78, 78, 78, 0.18);
color: black;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
.keypad-button {
background-color: rgba(12, 12, 12, 0.79);
color: whitesmoke;
border: 1.4px solid black;
border-radius: 5px;
width: 154px;
height: 90px;
font-family: "Ubuntu", sans-serif;
font-weight: 500;
font-style: normal;
font-size: 20px;
transition-duration: 0.4s;
cursor: pointer;
text-align: center;
}
.keypad-button:hover{
background-color: rgba(78, 78, 78, 0.18);
color: black;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
.side{
background-color: rgba(52, 52, 52, 0.64);
color: whitesmoke;
border: 1.4px solid black;
border-radius: 5px;
width: 154px;
height: 90px;
font-family: "Ubuntu", sans-serif;
font-weight: 500;
font-style: normal;
font-size: 20px;
transition-duration: 0.4s;
cursor: pointer;
text-align: center;
}
.side:hover{
background-color: rgba(78, 78, 78, 0.18);
color: black;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}