summaryrefslogtreecommitdiff
path: root/frontend/site/projects/museum/views/counter.css
blob: 5b182f3617fd3096b40265cb15f8f0ebfa194b8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.counter {
  position: absolute;
  top: 0;
  left: 25%;
  width: 50%;
  text-align: center;

  font-family: 'Druk Wide', sans-serif;
  text-transform: uppercase;
  font-size: 2.5vh;
  margin: 0.5vh 0 0vh;
  cursor: default;
  user-select: none;
  color: #FF790D;
}
.counter .description {
  opacity: 0;
  transition: opacity 0.2s;
}
.counter:hover .description {
  opacity: 1;
}