-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
68 lines (58 loc) · 1.25 KB
/
style.css
File metadata and controls
68 lines (58 loc) · 1.25 KB
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
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');
body {
background-image: url("image2.jpg");
background-size: auto;
font-family: 'Montserrat', sans-serif;
color:#3e363f;
text-align: center;
}
h1 {
color: #c8fcfc;
}
.conversor {
background: linear-gradient(rgb(0, 87, 65), rgb(4, 90, 124));
text-align: center;
margin: 20px;
padding: 10px;
border: 1px solid #333;
border-radius: 5px;
display: inline-block;
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25),
0 10px 10px rgba(0, 0, 0, 0.22);
}
.buttons button {
background-color: #0074D9;
color: white;
border: none;
margin-top: 20px;
padding: 10px 10px;
border-radius: 5px;
cursor: pointer;
}
.buttons button:hover {
background-color: #008161;
}
.buttons .seleccion {
background-color: #3e363f;
}
.moneda-input {
margin-top: 10px;
padding: 10px;
}
.moneda, .monto {
border-radius: 10%;
padding: 15px;
}
table {
width: 100%;
margin-top: 10px;
border-collapse: collapse;
}
table, th, td {
border: 3px solid #00364b;
background-color: whitesmoke;
}
th, td {
padding: 5px;
text-align: center;
}