-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
95 lines (83 loc) · 1.83 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
html {
box-sizing: border-box;
height: 100%;
}
*,
*::before,
*::after {
box-sizing: inherit;
margin: 0;
padding: 0;
}
body {
align-items: center;
background: linear-gradient(320deg, #686264, #2e2b19, #686264);
display: flex;
font-family: 'Dosis', sans-serif;
height: inherit;
justify-content: center;
}
.wrapper {
backdrop-filter: blur(5.5px);
-webkit-backdrop-filter: blur(5.5px);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(35, 35, 35, 0.1);
color: #232323;
background: rgba(255, 255, 255, 0.30);
border: 1px solid rgba(255, 255, 255, 0.34);
flex-basis: 400px;
height: 540px;
padding: 20px 35px;
}
.screen {
backdrop-filter: blur(5.5px);
-webkit-backdrop-filter: blur(5.5px);
background: rgba(255, 255, 255, 0.75);
border: 1px solid rgba(255, 255, 255, 0.01);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(35, 35, 35, 0.1);
color: #232323;
font-size: 35px;
overflow: auto;
padding: 20px;
text-align: right;
width: 326px;
}
.calcu-button-row {
display: flex;
justify-content: space-between;
margin: 5% 0;
}
.calcu-button {
backdrop-filter: blur(5.5px);
-webkit-backdrop-filter: blur(5.5px);
background: rgba(255, 255, 255, 0.75);
border: 1px solid rgba(255, 255, 255, 0.01);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(35, 35, 35, 0.1);
color: #232323;
flex-basis: 20%;
font-family: inherit;
font-size: 24px;
height: 65px;
}
.calcu-button:last-child {
color: #fff;
background: #f0b240;
}
.calcu-button:last-child:hover {
background-color: inherit;
color: inherit;
}
.calcu-button:hover {
background-color: inherit;
}
.calcu-button:active {
background-color: #ffef78;
}
.double {
flex-basis: 47%;
}
.triple {
flex-basis: 73%;
}