Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 3700 | Rev 3707 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 3700 Rev 3701
Línea 15... Línea 15...
15
*::-moz-placeholder {
15
*::-moz-placeholder {
16
    color: #ccc;
16
    color: #ccc;
17
    font-size: 15px;
17
    font-size: 15px;
18
}
18
}
Línea -... Línea 19...
-
 
19
 
-
 
20
h1,
-
 
21
h2,
-
 
22
h3,
-
 
23
h4,
-
 
24
h5,
-
 
25
h6,
-
 
26
p,
-
 
27
b,
-
 
28
a,
-
 
29
span,
-
 
30
label {
-
 
31
    color: var(--font-color);
-
 
32
}
-
 
33
 
-
 
34
h1,
-
 
35
h2,
-
 
36
h3 {
-
 
37
    color: var(--title-color);
-
 
38
    font-weight: 700;
-
 
39
}
-
 
40
 
-
 
41
h4,
-
 
42
h5,
-
 
43
h6,
-
 
44
span {
-
 
45
    color: var(--subtitle-color);
-
 
46
    font-weight: 600;
-
 
47
    font-size: 1rem;
-
 
48
    align-items: center;
-
 
49
}
-
 
50
 
-
 
51
span {
-
 
52
    display: inline-flex;
-
 
53
}
-
 
54
 
-
 
55
ul,
-
 
56
ol {
-
 
57
    list-style: none;
-
 
58
    padding: 0;
-
 
59
    margin: 0;
-
 
60
}
-
 
61
 
-
 
62
form {
-
 
63
    margin: 0;
-
 
64
}
-
 
65
 
-
 
66
a {
-
 
67
    text-decoration: none;
-
 
68
 
-
 
69
    color: var(--subtitle-color);
-
 
70
 
-
 
71
    &:focus,
-
 
72
    &:hover,
-
 
73
    &:visited,
-
 
74
    &:link,
-
 
75
    &:active {
-
 
76
        text-decoration: none;
-
 
77
        outline: none;
-
 
78
 
-
 
79
        color: var(--subtitle-color);
-
 
80
    }
-
 
81
}
19
 
82
 
20
table {
83
table {
21
    border-collapse: collapse;
84
    border-collapse: collapse;
22
    border-spacing: 0;
85
    border-spacing: 0;
Línea -... Línea 86...
-
 
86
}
-
 
87
 
-
 
88
button {
-
 
89
    outline: none;
-
 
90
    border: none;
-
 
91
    padding: 0;
-
 
92
    background-color: transparent;
-
 
93
 
-
 
94
    &:active,
-
 
95
    &:focus {
-
 
96
        outline: none;
-
 
97
    }
-
 
98
}
-
 
99
 
-
 
100
input,
-
 
101
textarea {
-
 
102
    outline: none;
-
 
103
}
-
 
104
 
-
 
105
section {
-
 
106
    width: 100%;
-
 
107
    position: relative;
-
 
108
}
-
 
109
 
-
 
110
p {
-
 
111
    color: var(--font-color);
-
 
112
    font-size: 1rem;
-
 
113
    line-height: 1.2;
-
 
114
}
-
 
115
 
-
 
116
hr {
-
 
117
    margin-top: 1rem;
-
 
118
    margin-bottom: 1rem;
-
 
119
    border: 0;
-
 
120
    border-top: 1px solid #e5e5e5;
23
}
121
}
24
 
122
 
25
#app {
123
#app {
26
    display: grid;
124
    display: grid;
27
    grid-template-rows: auto 1fr auto;
125
    grid-template-rows: auto 1fr auto;
Línea 53... Línea 151...
53
    animation: 300ms ease-in 0s both fadedown;
151
    animation: 300ms ease-in 0s both fadedown;
54
}
152
}
Línea 55... Línea 153...
55
 
153
 
56
.rbc-month-view,
154
.rbc-month-view,
57
.rbc-time-view {
155
.rbc-time-view {
58
    background-color: var(--main);
156
    background-color: var(--bg-color);
Línea 59... Línea 157...
59
}
157
}
60
 
158
 
61
.rbc-toolbar .rbc-btn-group button {
159
.rbc-toolbar .rbc-btn-group button {
Línea 62... Línea 160...
62
    background-color: var(--main);
160
    background-color: var(--bg-color);
63
}
161
}
64
 
162
 
Línea 65... Línea 163...
65
.rbc-toolbar .rbc-toolbar-label {
163
.rbc-toolbar .rbc-toolbar-label {
66
    text-transform: capitalize;
164
    text-transform: capitalize;
Línea 67... Línea 165...
67
    font-size: 1rem;
165
    font-size: 1rem;
68
 
166
 
69
    color: var(--font-title);
167
    color: var(--title-color);
Línea 94... Línea 192...
94
    font-size: 0.95rem;
192
    font-size: 0.95rem;
95
    line-height: 1;
193
    line-height: 1;
96
    overflow: hidden;
194
    overflow: hidden;
97
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
195
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
Línea 98... Línea 196...
98
 
196
 
99
    border-radius: var(--border-radius);
197
    border-radius: 10px;
Línea 100... Línea 198...
100
}
198
}
101
 
199
 
Línea 102... Línea 200...
102
.btn-primary {
200
.btn-primary {
Línea 103... Línea 201...
103
    background-color: var(--button-background-primary);
201
    background-color: var(--button-bg);
104
 
202
 
105
    color: var(--button-text-primary);
203
    color: var(--button-text-color) !important;
106
 
204
 
Línea 107... Línea 205...
107
    &:hover {
205
    &:hover {
108
        background-color: var(--main);
206
        background-color: var(--bg-color);
Línea 109... Línea 207...
109
    }
207
    }
Línea 110... Línea 208...
110
}
208
}
111
 
209
 
112
.btn-secondary {
210
.btn-secondary {
113
    background: var(--button-background-secondary);
211
    background: var(--button-bg-secondary);
Línea 114... Línea 212...
114
 
212
 
115
    color: var(--button-text-secondary);
213
    color: var(--button-text-color-secondary) !important;
Línea 116... Línea 214...
116
 
214
 
Línea 117... Línea 215...
117
    &:hover {
215
    &:hover {
118
        background-color: var(--button-background-secondary);
216
        background-color: var(--button-bg-secondary);
-
 
217
    }
119
    }
218
}
120
}
219
 
121
 
220
.btn-tertiary {
Línea 122... Línea 221...
122
.btn-tertiary {
221
    background-color: var(--button-bg-tertiary);
123
    background-color: var(--button-background-tertiary);
222
 
Línea 199... Línea 298...
199
    margin: 0;
298
    margin: 0;
200
}
299
}
Línea 201... Línea 300...
201
 
300
 
202
.marketplace_card {
301
.marketplace_card {
203
    background: var(--bg-color);
302
    background: var(--bg-color);
204
    border-radius: var(--border-radius);
303
    border-radius: 10px;
205
    display: flex;
304
    display: flex;
206
    flex-direction: column;
305
    flex-direction: column;
207
    max-width: 250px;
306
    max-width: 250px;
208
    overflow: hidden;
307
    overflow: hidden;
Línea 214... Línea 313...
214
        aspect-ratio: 4/2.5;
313
        aspect-ratio: 4/2.5;
215
    }
314
    }
Línea 216... Línea 315...
216
 
315
 
217
    &:hover {
316
    &:hover {
218
        transform: translateY(-1rem);
317
        transform: translateY(-1rem);
-
 
318
        box-shadow:
-
 
319
            rgba(0, 0, 0, 0.2) 1px 1px 1px -1px,
219
        box-shadow: var(--light-shadow);
320
            rgba(0, 0, 0, 0.2) 1px 2px 4px;
220
    }
321
    }
Línea 221... Línea 322...
221
}
322
}
222
 
323