Blame view

babylon-vue-4.0.0/src/assets/sass/layout/_utils.scss 2.03 KB
0f94839d   함상기   babylon client fo...
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
  /* Utils */
  .clearfix:after {
      content:" ";
      display:block;
      clear:both;
  }
  
  .card {
      background: $cardBgColor;
      padding: 1.5rem;
      margin-bottom: 1rem;
      border: $cardBorder;
      border-radius: $borderRadius;
  
      &.card-w-title {
          padding-bottom: 16px;
      }
  
      &.no-gutter {
          margin-bottom: 0;
      }
  }
  
  .nopad {
      padding: 0;
  
      .ui-panel-content {
          padding: 0;
      }
  }
  
  .p-sr-only {
      border: 0;
      clip: rect(1px, 1px, 1px, 1px);
      clip-path: inset(50%);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
      word-wrap: normal !important;
  }
  
  .separator {
      border: 1px solid $dividerColor;
  }
  
  @-webkit-keyframes fadeInDown {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, -20px, 0);
      transform: translate3d(0, -20px, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translate3d(0, -20px, 0);
    }
  
    to {
      opacity: 1;
      transform: none;
    }
  }
  
  @-webkit-keyframes fadeOutUp {
    from {
      opacity: 1;
    }
  
    to {
      opacity: 0;
      -webkit-transform: translate3d(0, -20px, 0);
      transform: translate3d(0, -20px, 0);
    }
  }
  
  @keyframes fadeOutUp {
    from {
      opacity: 1;
    }
  
    to {
      opacity: 0;
      -webkit-transform: translate3d(0, -20px, 0);
      transform: translate3d(0, -20px, 0);
    }
  }
  
  .fadeInDown {
      -webkit-animation-name: fadeInDown;
      animation-name: fadeInDown;
  }
  
  .fadeOutUp {
      -webkit-animation-name: fadeOutUp;
      animation-name: fadeOutUp;
  }
  
  .layout-wrapper {
      .layout-ajax-loader {
          position: absolute;
          right: 15px;
          bottom: 15px;
  
          .layout-ajax-loader-icon {
              color: $topbarBgColor;
              font-size: 32px;
          }
      }
  }
  
  ::-webkit-input-placeholder {color:$textSecondaryColor}
  :-moz-placeholder           {color:$textSecondaryColor}
  ::-moz-placeholder          {color:$textSecondaryColor}
  :-ms-input-placeholder      {color:$textSecondaryColor}