-
Notifications
You must be signed in to change notification settings - Fork 5
/
app.css
93 lines (93 loc) · 1.65 KB
/
app.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
body{
background-color: lime;
}
h1{
text-align: center;
color: white;
margin-top: 50px;
}
.screen{
background-color: lightgrey;
border: solid black 2px;
color: black;
font-size: medium;
width: 101.8%;
cursor: default;
padding: 10px;
margin: auto;
margin-bottom: 10px;
border-radius: 50px;
}
input[type='button']:hover{
background-color: #16B625;
}
input[type='button']:active{
background-color: limegreen;
}
.operator{
background-color: #0BDA51;
padding: 5px;
color: black;
border: solid black 2px;
width: 100%;
height: 40px;
cursor: pointer;
border-radius: 50px;
}
.number{
padding: 5px;
height: 40px;
color: black;
border: solid black 2px;
width: 100%;
cursor: pointer;
border-radius: 50px;
background-color: #98FB98;
}
.decimal{
background-color: #0FFF50;
padding: 5px;
color: black;
border: solid black 2px;
width: 100%;
height: 40px;
cursor: pointer;
border-radius: 50px;
}
.clear{
background-color: #228B22;
padding: 5px;
color: black;
border: solid black 2px;
width: 100%;
height: 42px;
cursor: pointer;
margin: auto;
margin-bottom: 10px;
border-radius: 50px;
}
.equal{
background-color: #0FFF50;
padding: 5px;
color: black;
border: solid black 2px;
width: 100%;
height: 40px;
cursor: pointer;
border-radius: 50px;
}
.container{
background-color: white;
padding: 15px;
color: black;
border: solid black 2px;
width: 50%;
display: block;
align-self: center;
border-radius: 20px;
margin: 100px auto;
box-shadow: 5px 10px 20px black;
}
table{
width: 100%;
}