-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
59 lines (58 loc) · 1023 Bytes
/
index.css
File metadata and controls
59 lines (58 loc) · 1023 Bytes
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
table{
width: 315px;
margin: 50px auto;
background-color: salmon;
border: none;
border-radius: 10px;
padding: 0px 20px 20px;
}
.heading{
color: white;
font-size: 130%;
text-align: center;
}
#input, #answer{
width: 260px;
height: 50px;
font-size: 210%;
text-align: right;
border: none;
}
#answer{
color: green;
}
#input {
border-radius: 5px 5px 0px 0px;
box-shadow: 2px 2px 2px black;
color: hsl(0, 0%, 12%);
}
#answer{
border-radius: 0px 0px 5px 5px;
box-shadow: 2px 2px 2px black;
}
#backspace{
color: red;
}
input[type=button]{
height: 60px;
width: 60px;
font-size:130%;
color: blue;
background-color: white;
margin: 1px 2px 5px 2px;
border-radius: 8px;
border: none;
}
input[type=button]:hover{
background-color: #cbcbcb;
cursor: pointer;
}
#igual{
width: 127px;
color: white;
background-color: rgb(124, 202, 124);
}
#cee{
color: white;
background-color: rgb(155, 58, 58);
}