-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
81 lines (70 loc) · 1.12 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
/* All styling for Exchange Rate Calculator App */
html {
position: relative;
min-height: 100%;
text-align: center;
}
body {
margin: 20px;
font-family: 'Open Sans', sans-serif;
}
header {
margin: 50px 20px;
font-weight: 800;
font-size: 2em;
}
input {
margin-right: 10px;
}
select {
margin-right: 10px;
cursor: pointer;
}
.error p {
margin-top: 15px;
margin-left: auto;
margin-right: auto;
color: red;
border: 2px solid red;
width: 300px;
}
form button {
display: block;
margin: 30px auto;
height: 50px;
width: 100px;
font-size: 1.3em;
background-color: black;
color: white;
cursor: pointer;
border: none;
border-radius: 10px;
}
#results {
margin: 0 auto;
border-top: 2px solid black;
width: 65%;
}
#results div {
margin: 30px auto;
border: 2px solid black;
width: 50%;
}
#exchdata table {
margin: 30px auto;
padding: 10px;
border: 2px solid black;
width: 50%;
}
footer {
margin: 50px 20px;
display: block;
font-family: 'Open Sans';
font-weight: lighter;
font-style: italic;
}
.backToTop a {
margin: 10px auto;
display: block;
font-size: 1.4em;
}