aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/styles/Home.module.css
blob: 2116d7d47aa9b4efa6524913009198ca7cb368b2 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
.container {
  min-height: 100vh;
  height: 100vh;
  width: 100vw;
  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;
  z-index: 30;
}

.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;
}

#errorContainer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;

  z-index: 10;
  color: red;
}