aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/newlightbox/ExploreView/ExploreView.scss
blob: 5a8ab2f875b54d4efb671440aef8b302334bcc06 (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
@import '../NewLightboxStyles.scss';

.exploreView-container {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    position: relative;
    // transform: scale(1);
    background: $gray-l1;
    border-top: $standard-border;
    border-color: $gray-l2;
    border-radius: 0px 0px 20px 20px;
    transform-origin: 50% 50%;
    overflow: hidden;

    &.dark {
      background: $black;
    }
  
    &.light,
    &.default {
      background: $gray-l1;
    }

    .exploreView-doc {
      width: 60px;
      height: 80px;
      position: absolute;
      background: $blue-l2;
      // opacity: 0.8;
      transform-origin: 50% 50%;
      transform: translate(-50%, -50%) scale(1);
      cursor: pointer;
      transition: 0.2s ease;
      overflow: hidden;
      font-size: 9px;
      padding: 10px;
      border-radius: 5px;

      &:hover {
        transform: translate(calc(-50% * 1.125), calc(-50% * 1.125)) scale(1.5);
      }
    }
}