-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
154 lines (139 loc) · 2.37 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
body {
color: #532827;
text-align: center;
width: 100%;
}
h5 {
margin: 0;
font-size: 50px;
}
.leftMove{
position: relative;
float: left;
}
.move-down{
margin-top: 100px;
}
.rightMove{
position: relative;
float: right;
margin-top: 4px;
}
.container {
width: 100%;
text-align: center;
}
h1 {
margin: 0 0 20px;
padding: 0 0 20px;
border-bottom: solid 1px #ddd;
}
.listDisplay {
position: relative;
margin-top: -35px;
float: right;
margin-right: 30px;
}
button {
border: none;
background: #6c2726;
color: white;
border-bottom: solid 4px #222;
font-size: 18px;
padding: 20px 30px;
cursor: pointer;
}
.remove-button {
display: inline-block;
padding: 6px 12px;
margin-bottom: 0;
font-size: 14px;
line-height: 1.42857143;
width: 80px;
text-align: center;
white-space: nowrap;
vertical-align: middle;
cursor: pointer;
}
#currency-from{
padding: 8px;
border: 0px solid #ddd;
border-radius: 5px;
width: 200px;
margin-left: 5px;
}
#currency2{
padding: 8px;
border: 2px solid #ddd;
border-radius: 5px;
margin-top: 10px;
}
#currency-to{
margin-top: 1px;
margin-left: 5px;
padding: 8px;
border: 0px solid #ddd;
border-radius: 5px;
width: 200px;
}
.go-down{
margin-bottom: 50px;
}
.main {
position: relative;
margin-left: 400px;
width: 610px;
text-align: center;
}
form input {
padding: 8px;
border: 2px solid #ddd;
border-radius: 5px;
margin-top: 4px;
}
table {
width: 100%;
border: 0px solid #ddd;
max-width: 100%;
margin-bottom: 20px;
background-color: transparent;
border-spacing: 0;
border-collapse: collapse;
display: table;
border-color: grey;
}
button:hover {
background: #fff;
color: black;
border-left-color: #6c2726;
border-bottom-color: #111;
}
button:active {
position: relative;
top: 2px;
}
#total {
font-size: 50px;
word-break: break-all;
}
#total-label {
content: "Sub Total:";
margin-top: 10px;
font-size: 14px;
display: block;
font-weight: bold;
text-transform: uppercase;
}
form {
text-align: left;
}
td {
font-weight: bold;
padding: 10px 10px 10px 10px;
word-break: break-all;
}
form label {
display: table;
font-weight: bold;
margin: 10px 0;
}