-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
66 lines (53 loc) · 1.12 KB
/
index.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
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: transparent;
margin: 0;
font-family: Arial, sans-serif;
background-image: ;
}
.calculator {
border: 10px solid #230909;
padding: 18px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 0 20px rgba(0,0,0,0.1);
background-color: #030303;
}
#display {
width: 83%;
height: 60px;
font-size: 2em;
text-align: right;
padding: 20px ;
border: none;
outline: none;
background-color: #00ccff;
color: white;
margin-left: 15px;
margin-bottom: 5px;
}
.buttons {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 10px;
border: 5px transparent;
padding: 15px;
}
.btn {
width: 100%;
padding: 20px;
border: 3px transparent;
border-radius: 10px;
background-color: rgb(109, 106, 106);
font-size: 1.5em;
cursor: pointer;
}
.btn:active {
background-color: #211a16;
}
.btn:hover {
color: #00ccff;
}