-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
56 lines (49 loc) · 864 Bytes
/
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
.numbers {
background-color: rgb(187, 176, 141);
color: black;
font-size: x-large;
margin: 1%;
border-radius: 20%;
height: 5vh;
font-weight: 500;
}
.operators {
background-color: rgb(85, 115, 122);
color: white;
font-size: x-large;
font-weight: 500;
margin: 1%;
border-radius: 20%;
height: 5vh;
}
.operators:hover,
.numbers:hover {
background-color: rgb(143, 89, 194);
color: white;
}
.buttons {
border: 1px solid;
border-radius: 20%;
display: grid;
grid-template-columns: repeat(4, 20%);
gap: 5%;
overflow: hidden;
padding: 5% 10% 10% 10%;
}
.textArea {
padding: 2%;
height: 10vh;
}
#display {
width: 100%;
height: 100%;
font-size: large;
font-weight: 300;
border-radius: 10%;
}
.calculator {
justify-content: center;
background-color: rgb(75, 75, 65);
margin: 10%;
border-radius: 10%;
}