blob: 1b82f3694454bbcc38e4ffe0f9a41b02c02948c4 (
plain)
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
|
.container {
min-height: 100vh;
height: 100vh;
width: 100vw;
padding: 0 0.5rem;
overflow: hidden;
position: relative;
}
.tomiBtn {
position: absolute;
transition: 300ms ease all;
outline: none;
background: none;
border: none;
cursor: pointer;
width: 80vw;
height: 80vw;
left: 50%;
top: 50%;
margin-left: -40vw;
margin-top: -40vw;
}
.btnInner {
position: relative;
}
.tomiBtn img {
max-width: 100%;
max-height: 100%;
}
.counter {
position: absolute;
top: 36%;
left: 50%;
width: 100%;
margin-left: -50%;
z-index: 999;
font-size: 175%;
text-align: center;
}
|