Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16825 efrain 1
// Demo Styles
2
 
3
.main-content {
4
  color: $body-color;
5
  font-size: 16px;
6
  > .page-title {
7
    margin-bottom: 1rem;
8
    font-weight: 400;
9
  }
10
  > h4 {
11
    margin-top: 1.5rem;
12
    margin-bottom: .875rem;
13
    &::before {
14
      display: block;
15
      height: 5.4rem;
16
      margin-top: -6rem;
17
      content: "";
18
    }
19
  }
20
  > hr {
21
    margin-top: 40px;
22
    margin-bottom: 40px;
23
  }
24
  .example {
25
    font-size: 0.875rem;
26
    letter-spacing: normal;
27
    padding: 10px;
28
    background-color: $card-bg;
29
    border: 4px solid $border-color;
30
    position: relative;
31
    @media(min-width: 576px) {
32
      padding: 25px;
33
    }
34
  }
35
  .highlight {
36
    position: relative;
37
    background-color: $card-bg;
38
    padding: 15px;
39
    pre {
40
      padding: 15px;
41
      font-size: .875rem;
42
      font-family: $font-family-sans-serif;
43
      background: transparent;
44
      line-height: 1.4;
45
      margin: 0;
46
      code {
47
        font-family: $font-family-sans-serif;
48
        padding: 0;
49
        tab-size: 8;
50
        color: $body-color;
51
        text-shadow: none;
52
        .token {
53
          &.url,
54
          &.string,
55
          &.entity,
56
          &.operator {
57
            background: none;
58
          }
59
        }
60
      }
61
    }
62
    .btn-clipboard {
63
      position: absolute;
64
      top: 6px;
65
      right: 6px;
66
      font-size: 12px;
67
      padding: 1px 6px;
68
      background: rgba($primary, .2);
69
      &:hover,
70
      &:focus {
71
        background: rgba($primary, .3);
72
        border-color: transparent;
73
        transition: background .3s ease-in-out;
74
      }
75
    }
76
  }
77
}
78
 
79
.example {
80
  .btn-toolbar {
81
    + .btn-toolbar {
82
      margin-top: .5rem;
83
    }
84
  }
85
  .btn-group {
86
    @extend .mb-1;
87
    @extend .mb-md-0;
88
  }
89
  .modal {
90
    &.static {
91
      position: static;
92
      display: block;
93
    }
94
  }
95
  .navbar {
96
    position: relative;
97
    padding: .5rem 1rem;
98
    left: auto;
99
    width: 100%;
100
    height: auto;
101
    z-index: 9;
102
    border-bottom: 0;
103
    box-shadow: none;
104
    .navbar-brand {
105
      font-size: 1.25rem;
106
    }
107
  }
108
  .progress {
109
    + .progress {
110
      margin-top: 10px;
111
    }
112
  }
113
  .perfect-scrollbar-example {
114
    position: relative;
115
    max-height: 250px;
116
    background: $card-bg;
117
  }
118
  .scrollspy-example {
119
    position: relative;
120
    height: 200px;
121
    margin-top: .5rem;
122
    overflow: auto;
123
  }
124
  .scrollspy-example-2 {
125
    position: relative;
126
    height: 350px;
127
    overflow: auto;
128
  }
129
  nav {
130
    .breadcrumb {
131
      margin-bottom: .75rem;
132
    }
133
 
134
    &:last-child {
135
      .breadcrumb {
136
        margin-bottom: 0;
137
      }
138
    }
139
  }
140
}
141
 
142
.page-breadcrumb {
143
  margin-bottom: 15px;
144
  .breadcrumb {
145
    padding: 0;
146
    background: $body-bg;
147
  }
148
}
149
 
150
.noble-ui-logo {
151
  font-weight: 700;
152
  font-size: 25px;
153
  color: darken($primary, 50%);
154
  span {
155
    color: $primary;
156
    font-weight: 300;
157
  }
158
  &:hover {
159
    color: darken($primary, 50%);
160
  }
161
  &.logo-light {
162
    color: $body-color;
163
  }
164
}
165
 
166
.buy-now-wrapper {
167
  position: fixed;
168
  bottom: 30px;
169
  right: 35px;
170
  z-index: 99999;
171
  .rtl & {
172
    right: auto;
173
    left: 35px;
174
  }
175
  .btn {
176
    svg {
177
      width: 19px !important;
178
      height: 19px !important;
179
    }
180
  }
181
}