-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
73 lines (72 loc) · 1.26 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
*{
margin: 0;
padding: 0;
box-shadow: border-box;
}
.calc{
min-width: 300px;
max-width: 420px;
text-align: center;
margin: 0 auto;
font-size: 0;
box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
transition: 0.2s;
background: #000000;
}
.calc:hover{
box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.6);
}
.result{
width: 100%;
font-size: 50px;
font-weight: bold;
text-align: right;
padding: 80px 0;
letter-spacing: 2px;
background: rgba(120, 120, 120, 0.5);
border-radius: 0 0 30px 30px;
border: none;
outline: none;
color: rgba(255, 255, 255, 1)
}
.calc__input{
padding: 20px 0;
}
.calc__row{
padding: 5px 0;
}
.btn{
width: 24%;
min-height: 99px;
background: rgba(75, 75, 75, 0.5);
color: rgba(218, 218, 255, 1);
font-weight: normal;
font-size: 45px;
border: none;
border-radius: 50%;
transition: 0.1s;
margin: 0.5%;
font-family: Arial, Helvetica, sans-serif;
}
.btn:active{
border-radius: 35%;
background: rgba(130, 130, 130, .5);
}
.b{
background: rgba(0, 159, 255, 0.5);
}
.b:active{
background: rgba(128, 207, 255, 0.5);
}
.c{
background: rgba(25, 86, 255, 0.5);
}
.c:active{
background: rgba(137, 170, 255, 0.5)
}
.ac{
background: rgba(0,180,0,0.5);
}
.ac:active{
background: rgba(126, 255, 126, 0.5);
}