-
Notifications
You must be signed in to change notification settings - Fork 5
/
style.css
91 lines (70 loc) · 1.73 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('card-machine/card-machine.css');
@import url('card/card.css');
* {
font-family: 'Inter', sans-serif;
font-size: 16px;
box-sizing: border-box;
margin: 0;
padding: 0;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
overflow: hidden;
background: #8e9eab;
/* fallback for old browsers */
background: -webkit-linear-gradient(to right, #eef2f3, #8e9eab);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #eef2f3, #8e9eab);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
/* ORGANIZA NOS LUGAR */
.wallet-container {
display: flex;
transform: scale(.5);
/* overflow: scroll; */
}
.wallet-container .card {
margin-left: 8px;
transition: .3s;
}
.wallet-container .card:hover {
transform: scale(1.5);
transition: .5s;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.wallet-container .card:first-child {
margin-left: 0;
}
.card-section {
position: relative;
display: flex;
align-items: center;
flex: 1;
}
/* .card {
display: none;
} */
.card-control .card {
position: absolute;
top: 37%;
}
.insert-left .card {
right: 60%;
transition: .5s;
}
.insert-left .card:hover {
right: 70%;
}
.insert-right .card {
left: 60%;
transition: .5s;
}
.insert-right .card:hover {
left: 70%;
}