-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (70 loc) · 1.23 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
*{
font-family: "Odibee Sans", sans-serif;
font-weight: 400;
font-style: normal;
margin:0;
padding:0;
}
html{
height:100vh;
width:100vw;
}
body{
height:100%;
width:100%;
display: flex;
justify-content: center;
align-items: center;
}
#dis{
width:100%;
border-radius:20px ;
border:none;
border-bottom-left-radius: 0%;
border-bottom-right-radius: 0%;
background-color: rgb(59, 58, 58);
height:120px;
color:white;
font-size: 50px;
}
#dis:focus{
outline:none;
}
#btn{
display: grid;
grid-template-columns: repeat(4,1fr);
gap:2px;
}
.calc{
background-color: rgb(41, 40, 40);
max-width: 400px;
border-radius: 20px;
padding:0;
overflow: hidden;
}
button{
background-color: black;
font-size: 30px;
border-radius: 100%;
border:none;
color:white;
width:60px;
height:60px;
padding:10px;
margin:20px;
cursor:pointer;
}
button:hover{
background-color: rgb(71, 70, 70);
}
#op{
background-color: orange;
color: black;
}
#e{
background-color: orange;
color: black;
}
#c{
background-color: red;
}