aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/videos/+video-edit/video-add-components/video-import-url.component.scss
blob: e907edc7035fc926b77fcf80f02ca58228e34084 (plain) (tree)
1
2
3
4
5
6
7
8
9

                    






                                                  







                                
                   








                         
                                                                        
















                                              
@import 'variables';
@import 'mixins';

$width-size: 190px;

.peertube-select-container {
  @include peertube-select-container($width-size);
}

.alert.alert-danger {
  text-align: center;

  & > div {
    font-weight: $font-semibold;
  }
}

.import-video-url {
  display: flex;
  flex-direction: column;
  align-items: center;

  .icon.icon-upload {
    @include icon(90px);
    margin-bottom: 25px;
    cursor: default;

    background-image: url('../../../../assets/images/video/upload.svg');
  }

  input[type=text] {
    @include peertube-input-text($width-size);
    display: block;
  }

  input[type=button] {
    @include peertube-button;
    @include orange-button;

    width: $width-size;
    margin-top: 30px;
  }
}