-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
75 lines (64 loc) · 1.42 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
body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
background: #fffefd url(../Images/images.png) repeat top center;
}
h1 {
text-align: center;
color: #fff;
}
form {
display: flex;
flex-direction: column;
align-items: center;
background-color: white;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
padding: 20px;
margin: auto;
max-width: 500px;
}
input[type="text"],
select {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
}
input[type="submit"] {
width: 100%;
background-color: darkcyan;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: darkcyan;
}
#result {
width: 500px;
display: flex;
justify-content: center;
align-items: center;
margin: 20px auto;
background-color: #f0f0f0;
border-radius: 10px;
padding: 10px;
}
#converted_Amount {
font-size: 40px;
font-weight: bold;
}
.copyright {
color: white;
text-align: center;
font-weight: 700;
margin-top: 20px;
}
.copyright span a{
background-color: rgba(255, 255, 255, 0);
color: #ff6600;
}