aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-edit/video-add.component.scss
blob: 9adeaebb064fd4b0e70635dc87b38b17f454176a (plain) (blame)
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
@import '_variables';
@import '_mixins';

$border-width: 3px;
$border-type: solid;
$border-color: #EAEAEA;

.margin-content {
  padding-top: 50px;
}

.alert {
  font-size: 15px;
}

::ng-deep .video-add-nav {
  border-bottom: $border-width $border-type $border-color;
  margin: 50px 0 0 0 !important;

  &.hide-nav {
    display: none !important;
  }

  a.nav-link {
    @include disable-default-a-behaviour;

    margin-bottom: -$border-width;
    height: 40px !important;
    padding: 0 30px !important;
    font-size: 15px;

    &.active {
      border: $border-width $border-type $border-color;
      border-bottom: none;
      background-color: var(--submenuColor) !important;

      span {
        border-bottom: 2px solid var(--mainColor);
        font-weight: $font-bold;
      }
    }
  }
}

::ng-deep .upload-video-container {
  border: $border-width $border-type $border-color;
  border-top: transparent;

  background-color: var(--submenuColor);
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  width: 100%;
  min-height: 440px;
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;

  &.dragover {
    border: 3px dashed var(--mainColor);
  }
}