-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
89 lines (75 loc) · 1.32 KB
/
index.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
82
83
84
85
86
87
88
89
body {
background-color: skyblue;
}
.main {
background-color: pink;
margin: 100px auto;
width: 400px;
height: 250px;
}
select {
background-color: aquamarine;
border-radius: 5px;
width: 200px;
height: 25px;
}
select:hover {
background-color: rgb(103, 234, 190);
}
.from {
margin: 10px 5px 5px 5px;
width: 250px;
height: 18px;
padding: 7px;
}
.To {
margin: 5px 5px 10px 5px;
width: 250px;
height: 18px;
padding: 7px;
}
#currency-two {
margin-left: 20px;
}
.amount {
margin: 5px 5px 10px 5px;
width: 250px;
height: 20px;
padding: 7px;
}
.cal {
margin: 5px 5px 10px 5px;
width: 250px;
height: 18px;
padding: 7px;
}
.btn {
background-color: rgb(45, 162, 45);
color: white;
border-color: rgb(2, 101, 2);
border-radius: 5px;
}
button:hover {
background-color: rgb(6, 101, 6);
}
.ans {
width: 271px;
margin: 10px auto 5px auto;
}
#Ans-one {
margin: 10px auto 10px auto;
width: 370px;
height: 25px;
font-weight: bold;
text-align: center;
}
#Ans-second {
margin: 10px auto 10px auto;
width: 370px;
height: 25px;
font-weight: bold;
text-align: center;
}
input {
border-radius: 5px;
}