-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
120 lines (118 loc) · 2.28 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
body{
width: 100%;
height: 100vh;
}
.body-light{
background-color: #efefef;
}
.body-dark{
background-color: #141414;
}
.container{
width: 280px;
height: 560px;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
margin: auto;
border-radius: 12px;
padding: 0%;
}
.container-light{
background-color: #f0f0f0;
box-shadow: 0 0px 24px 16px rgba(0,0,0,0.2);
}
.container-dark{
background-color: #161616;
box-shadow: 0 0px 24px 16px rgba(0,0,0,0.2);
}
.display-section{
width: 100%;
height:200px;
border-radius: 12px 12px 0 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 20px;
}
.span{
color: aqua;
}
.display-title{
width: 100%;
height: 40px;
}
.display-title h1{
font-size: 16px;
line-height: 16px;
color:#fff;
font-family: Poppins;
}
.display-content{
width: 100%;
height: 140px;
text-align: right;
display: flex;
flex-direction: column;
justify-content: center;
}
.display-content p{
color:#fff;
font-family: Poppins;
font-size: 16px;
line-height: 16px;
font-weight: 600;
}
.display-content h2{
color:#fff;
font-family: Poppins;
font-size: 32px;
line-height: 32px;
margin-top: -2px;
}
.number-section{
width: 100%;
border-radius: 0 0 12px 12px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 20px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
border-top: 3px solid #111;
}
.number-section div{
width: 46px;
height:46px;
color: #000;
background-color: #161616;
display: flex;
align-items: center;
justify-content: center;
border-radius: 8px;
margin: 9px 7px;
box-shadow: -1px -1px 6px 1px #222222, 2px 2px 6px 1px #000;
color:white;
font-family: Poppins;
font-size:18px;
font-weight: 600;
cursor: pointer;
}
.number-section div:hover{
background-color: #141414;
box-shadow: 0px 0px 4px 4px #111 inset;
}
div.equal{
width:106px;
background-color: aqua;
}
div.equal:hover{
background-color: aqua;
box-shadow: 0px 0px 6px 8px rgb(7, 219, 219) inset;
}
div.operator{
color: aqua;
}