-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
97 lines (64 loc) · 1.2 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
.output{
height:30%;
width: 100%;
text-align: right;
padding: 50px;
box-sizing: border-box;
background: aliceblue;
border: 5px solid rgba(141, 130, 138, 0.733);
font-size: 2em;
border-radius: 35% 35% 0 0 ;
}
.component{
height: 70%;
width: 100%;
display: flex;
text-align: center;
border: 1px solid black;
font-size: 2em;
background-color: #00A7E1;
}
.numbers{
display: grid;
grid-template-columns: repeat(3,1fr);
width: 75%;
}
.numbers div{
border:1px solid black;
}
.operations{
display: grid;
grid-template-columns: repeat(1,1fr);
width: 25%;
font-size: 20px;
}
.operations div{
border:1px solid black;
}
.clear{
background: #FE5E91;
width: 100%;
height: 50%;
}
.backspace{
width: 100%;
}
.ae{
background:#F5B797;
}
.numbers div{
border:1px solid #F5BB00;
border-radius: 30%
}
button{
font-size: 2em;
border-color: rgb(163, 167, 170);
}
button:hover{
background: #00A7E1;
color: white;
border-color: rgb(255, 242, 54);
}
img{
height: 50px;
}