summaryrefslogtreecommitdiffstats
path: root/client/src/admin/scss/_creator.scss
blob: 696208cc248685ebd5745b4e467849a4c1ac3e8d (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
.creator {
  text-align: center;
  width: 100%;

  &__header {
    color: $text;
    text-align: center;
    font-size: 1.5em;
    padding-bottom: 1.5em;
  }

  &__input-line {
    max-width: 600px;
    margin: 0 auto;
    align-items: center;
    padding: 1em 0;
  }

  &__favicon {
    display: flex;

    &-ico {
      height: 32px;
      width: 32px;
      line-height: 32px;
      background: $text-inactive;
      color: $background-menu;
      border: 1px solid $background-menu;
      transition: .3s background;
      cursor: pointer;

      &:hover {
        background: $text-selected;
      }

      &:focus {
        outline: 2px solid $text-selected;
      }
    }

    &-text {
      color: $text-inactive;
      font-size: 1em;
      line-height: 32px;
      padding-left: 1em;
    }
  }

  &__btns {
    padding-top: 3em;
    font-size: 1.5em;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;

    &-next {
      color: $text-inactive;
      display: inline-block;
      padding: .5em;
      margin: 0 1em;
      outline: none;

      &.active {
        color: $text;
        transition: .3s color;
        cursor: pointer;

        &:hover {
          color: $text-selected;
        }

        &:focus {
          border-bottom: 2px solid $text-selected;
        }
      }
    }

    &-cancel {
      display: inline-block;
      color: $text;
      transition: .3s color;
      cursor: pointer;
      padding: .5em;
      margin: 0 1em;
      outline-width: 0;

      &:hover {
        color: $text-selected;
      }

      &:focus {
        border-bottom: 2px solid $text-selected;
      }
    }
  }
}