-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
99 lines (78 loc) · 1.51 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
96
97
98
99
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Popins', sans-serif;
}
body{
background-image: url(bg.png);
background-size: cover;
display: flex;
align-items: center;
flex-direction: column;
background-position-x: center;
}
.calculator{
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
width: 350px;
box-shadow: 0px 0px 6px 3px #009aff;
}
.screen{
width: 100%;
height: 120px;
background-color: #1e1e1e;
color: #ffffff;
padding: 8% 10px;
align-items: center;
position: relative;
text-align: right;
overflow: hidden;
}
.dis1{
opacity: 0.6;
font-size: 20px;
margin-bottom: 5px;
}
.dis2{
font-size: 32px;
}
.dis3{
font-size: 20px;
opacity: 0.5;
position: absolute;
left: 15px;
bottom: 5px;
}
.button_wrapper{
display: flex;
flex-wrap: wrap;
}
.buttons{
height: 80px;
width: 25%;
background-color: #191919;
color: #ffffff;
font-size: 22px;
outline: none;
border: 1px solid #000000;
cursor: pointer;
transition: 0.2s;
justify-content: center;
align-items: center;
display: flex;
}
.buttons:hover{
background: #323232;
}
div.zero{
width: 50%;
}
@media only screen and (max-width: 600px) {
.buttons:hover{
background: #191919;
}
}