-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (62 loc) · 1.29 KB
/
style.css
File metadata and controls
71 lines (62 loc) · 1.29 KB
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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,700;0,800;0,900;1,800;1,900&family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap');
main {
display: flex;
justify-content: center;
font-family: 'Montserrat', sans-serif;
}
.app-wrapper {
width: 50vw;
height: 80vh;
border-radius: 20px;
border: 1px solid gold;
box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
padding: 40px;
}
img {
width: 2vw;
vertical-align: middle;
}
button {
margin: 0;
padding: 0;
width: 8vw;
border: none;
background-color: inherit;
cursor: pointer;
}
.exchange {
width: 4vw;
}
.exchange:hover {
animation-name: rotation-btn;
animation-duration: 3s;
animation-iteration-count: infinite;
animation-direction: alternate;
}
h1 {
text-align: center;
}
form {
text-align: center;
}
input {
width: 8vw;
height: 8vh;
border-radius: 20px;
border-color: gold;
box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
}
select {
width: 5vw;
height: 6vh;
border: none;
box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
}
@keyframes rotation-btn {
0% {
transform: rotate(0deg) scale(1);
}
100% {
transform: rotate(360deg) scale(1.5);
}
}