blob: d05a562a68171c9ab8e8e738f005f9eb1d78a172 (
plain) (
blame)
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
|
*,
*:before,
*:after {
box-sizing: border-box;
padding: 0;
margin: 0;
}
html,
body {
background: #ccfbfe;
font-family: sans-serif;
overflow: hidden;
}
.wrapper {
width: 100vw;
height: 100vh;
overflow: hidden;
display: flex;
flex-direction: column;
position: relative;
opacity: 0;
transition: opacity 0.5s ease-in-out;
}
.cards {
flex-grow: 1;
padding-top: 40px;
text-align: center;
display: flex;
justify-content: center;
/* align-items: flex-end; */
z-index: 1;
}
.card {
display: inline-block;
width: 90vw;
max-width: 400px;
height: 70vh;
background: white;
padding-bottom: 40px;
border-radius: 8px;
overflow: hidden;
position: absolute;
will-change: transform;
transition: all 0.3s ease-in-out;
cursor: grab;
}
.yay_or_nay {
position: absolute;
bottom: 0;
flex: 0 0 100px;
text-align: center;
padding-top: 20px;
width: 100%;
}
.yay_or_nay button {
border-radius: 50%;
line-height: 60px;
width: 60px;
border: 0;
background: white;
display: inline-block;
margin: 20px;
}
.yay_or_nay button:focus {
outline: 0;
}
.yay_or_nay img {
vertical-align: middle;
}
|