-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·56 lines (49 loc) · 902 Bytes
/
style.css
File metadata and controls
executable file
·56 lines (49 loc) · 902 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
body {
font-family:Georgia, 'Times New Roman', Times, serif;
background-color: #afcdd7;
}
h1 {
text-align: center;
margin-top: 30px;
color: darkblue;
}
h2 {
text-align: center;
margin-top: 10px;
color: darkcyan;
}
.calculadora {
width: 314px;
margin: 0 auto;
background-color: rgb(255, 214, 198);
padding: 20px;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#pantalla {
color: darkblue;
width: 90%;
padding: 10px;
font-size: 20px;
margin-bottom: 10px;
text-align: right;
background-color: #afcdd7;
}
input[type="button"] {
color: darkblue;
width: 70px;
height: 40px;
margin-right: 5px;
margin-bottom: 5px;
font-size: 16px;
background-color: #afcdd7;
border: none;
border-radius: 5px;
cursor: pointer;
}
input[type="button"]:hover {
background-color: #ddd;
}
input[type="button"]:last-child {
margin-right: 0;
}