-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalci.css
46 lines (42 loc) · 896 Bytes
/
calci.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
*{
padding:0;
margin:0;
box-sizing:border-box;
}
body{
font-family:Roboto;
background: #303030;
}
.calculator{
position: absolute;
left:50%;
top:50%;
transform: translate(-50%,-50%);
display:grid;
grid-template-columns: repeat(4,minmax(50px,100px));
grid-template-rows: 60px repeat(4,50px) ;
/* background:red; */
gap:10px;
}
input{
grid-column: 1/-1;
width:100%;
border-radius: 7px;
outline:none;
border:0;
padding:0 1em;
font-weight: 700;
font-size: 1.3em;
box-shadow: 0px 0 50px 5px rgba(219 ,144, 4 ,.28);
user-select: none;
}
button{
background: linear-gradient(45deg,rgb(219, 144, 4),orange);
border:0;
border-radius: 5px;
user-select: none;
cursor: pointer;
font-weight: 700;
font-size: 1.5em;
outline:none;
}