-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
89 lines (89 loc) · 1.39 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
*,
*::after,
*::before {
padding: 0px;
margin: 0px;
font-family: inherit;
}
body,
html {
height: 100vh;
font-family: sans-serif;
}
button {
cursor: pointer;
border: 0px;
}
input[type="text"] {
background-color: transparent;
text-align: end;
width: 100%;
color: #d2d2d2;
border: 0px;
font-size: 4rem;
}
#main {
border: 2px solid #ededed;
border-radius: 50px;
width: 100%;
max-width: 280px;
background-color: #000000;
padding: 2rem 1rem;
}
.calc_header {
margin-top: 90px;
padding: 12px;
}
.calc_footer > * + * {
margin-top: 1rem;
}
.calc_footer > *:last-child {
gap: 1rem;
}
.btn_group {
display: flex;
justify-content: space-between;
align-items: center;
gap: 0.3rem;
}
.btn {
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
width: 60px;
height: 60px;
color: #ffffff;
font-size: 20px;
transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.btn .btn-grow {
flex-grow: 1;
border-radius: 40px;
}
.btn:hover {
transform: translate(-2px, -3px);
}
.btn.active {
background-color: #ffffff;
color: #f69906;
}
.btn-grey {
background-color: #9f9f9f;
color: #000000;
}
.btn-grey:hover {
background-color: #ededed;
}
.btn-dark-grey {
background-color: #313131;
}
.btn-dark-grey:hover {
background-color: #999999;
}
.btn-orange {
background-color: #f69906;
}
.btn-orange:hover {
background-color: orange;
}