-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (55 loc) · 1.24 KB
/
Copy pathstyle.css
File metadata and controls
61 lines (55 loc) · 1.24 KB
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
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*{
font-family: 'Poppins', sans-serif;
font-weight: bolder;
}
body{
background: linear-gradient(to top, #0077ff, #0e98e8f5);
width : 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.calculator {
border: 1px solid #ccc;
padding: 25px;
border-radius: 10px;
background-color: #040201;
box-shadow: 0 0 10px rgba(0.1, 2, 1, 0.2);
}
input[type="text"] {
width: calc(100% - 20px);
padding: 10px;
margin-bottom: 10px;
font-size: 25px;
border: 1px solid #ffffff;
border-radius: 6px;
font-style: bolder;
text-align: right;
}
.buttons {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 6px;
border-radius:10%
}
.operators-color{
color:rgb(255, 166, 0);
}
.eql-btn{
background-color: orange;
}
button {
font-family: 'Poppins', sans-serif;
padding: 10px;
font-size: 18px;
border: none;
border-radius: 3px;
cursor: pointer;
background-color: #ffffff;
transition: background-color 0.2s ease;
}
button:hover {
background-color: #73ef14;
}