forked from vivinkv6/working-calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
56 lines (49 loc) · 878 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
.container{
height: 630px;
width: 420px;
background-color: black;
margin: auto;
border-radius: 20px;
}
p{
color: white;
margin-left: 20px;
padding: 20px;
font-size: 1.5rem;
font-weight: bold;
}
#screen{
height: 80px;
width: 380px;
margin: 15px;
border-radius: 15px;
font-size: 4rem;
background-color: rgb(142, 157, 157);
text-align: right;
}
.button{
height: 50px;
width: 60px;
margin-left: 35px;
margin-top: 10px;
margin-bottom: 0px;
border-radius: 10px;
font-size: 1.7rem;
}
.button:hover{
border: 5px solid greenyellow;
}
.number{
background-color: rgb(144, 147, 144);
color: white;
}
.operator{
background-color: rgb(186, 183, 183);
color: white;
}
.clear{
background-color: red;
font-weight: bold;
font-size: 2rem;
color: white;
}