-
Notifications
You must be signed in to change notification settings - Fork 0
/
input.css
70 lines (59 loc) · 1.14 KB
/
input.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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components {
.grid-game {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(4, 1fr);
grid-gap: 20px;
justify-content: center;
align-items: center;
}
.card {
position: relative;
width: 6.7rem;
height: 8rem;
cursor: pointer;
transform-style: preserve-3d;
transition: transform 0.5s;
}
.card.flipped {
transform: rotateY(180deg);
}
.card .front, .card .back {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
display: flex;
justify-content: center;
align-items: center;
font-size: 24px;
border-radius: 10px;
}
.card .front {
border-radius: 10px;
transform: rotateY(180deg);
}
.card .back {
background-color: #10326e;
color: #fff;
}
.card :hover {
transition: transform 0.1s;
background-color: rgba(27, 68, 140, 0.9);
color: #fff;
}
.img-card {
border-radius: 10px;
}
/* .card .matched {
border: 2px solid green;
} */
#new-game {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
}