-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
70 lines (68 loc) · 1.48 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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background: url(images/viacheslav-bublyk-6WXbPWhT8c8-unsplash.jpg);
background-color: #25272f;
background-repeat: no-repeat;
background-blend-mode: overlay;
background-size: cover;
font-family: Lucida;
font-size: 1.5rem;
font-weight: normal;
color: black;
position: relative;
max-width: 500px;
margin: 0 auto;
}
/*Marquee content*/
h1{
text-align: center;
}
marquee{
padding-top: 2rem;
color: cornsilk;
}
/*Currency Containe*/
.container {
display: flex;
flex-direction: column;
margin: 10rem auto;
padding: 1rem;
max-height: 18rem;
border: 1.5px solid rgba(160, 170, 255, 0.35);
background-color: rgba(160, 170, 255, 0.35);
position: relative;
animation-name: bounce-4;
animation-timing-function: ease;
animation-duration: 2s;
animation-iteration-count: 1;
}
@keyframes bounce-4 {
0% { transform: scale(1,1) translateY(0); }
10% { transform: scale(1.1,.9) translateY(0); }
30% { transform: scale(.9,1.1) translateY(-100px); }
50% { transform: scale(1,1) translateY(0); }
100% { transform: scale(1,1) translateY(0); }
}
h2 {
margin-bottom: 1rem;
text-align: center;
color: cornsilk;
}
.inputValue,
.from,
.convtValue,
.to {
display: block;
text-align: center;
width: 100%;
height: 2rem;
margin-bottom: 0.5rem;
padding: 0.38rem 0.8rem;
color: #495057;
background-color: #fff;
border-radius: 0.25rem;
}