Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 7068 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
6542 stevensc 1
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i");
2
 
3
html,
4
body,
5
div,
6
span,
7
applet,
8
object,
9
iframe,
10
h1,
11
h2,
12
h3,
13
h4,
14
h5,
15
h6,
16
p,
17
blockquote,
18
pre,
19
a,
20
abbr,
21
acronym,
22
address,
23
big,
24
cite,
25
code,
26
del,
27
dfn,
28
em,
29
img,
30
ins,
31
kbd,
32
q,
33
s,
34
samp,
35
small,
36
strike,
37
strong,
38
sub,
39
sup,
40
tt,
41
var,
42
b,
43
u,
44
i,
45
center,
46
dl,
47
dt,
48
dd,
49
ol,
50
ul,
51
li,
52
fieldset,
53
form,
54
label,
55
legend,
56
table,
57
caption,
58
tbody,
59
tfoot,
60
thead,
61
tr,
62
th,
63
td,
64
article,
65
aside,
66
canvas,
67
details,
68
embed,
69
figure,
70
figcaption,
71
footer,
72
header,
73
hgroup,
74
menu,
75
nav,
76
output,
77
ruby,
78
section,
79
summary,
80
time,
81
mark,
82
audio,
83
video {
84
    margin: 0;
85
    padding: 0;
86
    border: 0;
87
    font-size: 100%;
88
    font: inherit;
89
    vertical-align: baseline;
90
}
91
 
92
/* HTML5 display-role reset for older browsers */
93
 
94
article,
95
aside,
96
details,
97
figcaption,
98
figure,
99
footer,
100
header,
101
hgroup,
102
menu,
103
nav,
104
section {
105
    display: block;
106
}
107
 
108
h1,
109
h2,
110
h3,
111
h4,
112
h5,
113
h6,
114
p,
115
b,
116
a,
117
span,
118
label {
119
    color: $font-color;
120
}
121
 
122
h1,
123
h2 {
124
    color: $title-color;
125
}
126
 
127
h2 {
128
    font-size: 1.5rem;
129
    font-weight: 600;
130
}
131
 
132
body {
133
    background-color: $bg-color-secondary;
134
    font-family: "Source Sans Pro", sans-serif;
135
    font-weight: 400;
136
    line-height: 1;
137
    position: relative;
138
    overflow-x: hidden;
139
    overflow-y: scroll;
140
}
141
 
142
ol,
143
ul {
144
    list-style: none;
145
}
146
 
7068 stevensc 147
a {
6542 stevensc 148
    text-decoration: none;
6926 stevensc 149
    display: inline-flex;
6542 stevensc 150
}
151
 
152
blockquote,
153
q {
154
    quotes: none;
155
}
156
 
157
blockquote:before,
158
blockquote:after,
159
q:before,
160
q:after {
161
    content: "";
162
    content: none;
163
}
164
 
165
button {
166
    outline: none;
167
}
168
 
169
table {
170
    border-collapse: collapse;
171
    border-spacing: 0;
172
}
173
 
174
* {
175
    margin: 0;
176
    padding: 0;
177
}
178
 
179
a:focus {
180
    text-decoration: none;
181
    outline: none;
182
}
183
 
184
button,
185
button:active,
186
button:focus {
187
    outline: none;
188
    border: none;
189
    background: transparent;
190
}
191
 
192
input {
193
    outline: none;
194
}
195
 
196
textarea {
197
    outline: none;
198
}
199
 
200
section {
201
    width: 100%;
202
    position: relative;
203
}
204
 
205
p {
206
    font-size: 14px;
207
    line-height: 1;
208
    color: $font-color;
209
}
210
 
211
hr {
212
    margin-top: 1rem;
213
    margin-bottom: 1rem;
214
    border: 0;
215
    border-top: 1px solid #e5e5e5 !important;
216
}
217
 
218
/* ================ CROSS BROWSER COMPATABILITY =============== */
219
 
220
img {
221
    max-width: 100%;
222
}
223
 
6790 stevensc 224
*::-webkit-scrollbar {
225
    width: 6px !important;
226
    height: 6px !important;
227
}
228
 
229
*::-webkit-scrollbar-thumb {
230
    background-color: rgba(0, 0, 0, 0.2);
231
}
232
 
233
*::-webkit-scrollbar-track {
234
    background: rgba(255, 255, 255, 0.08);
235
}
236
 
237
*::-webkit-input-placeholder {
238
    color: #ccc;
239
    font-size: 15px;
240
}
241
 
242
*::-moz-placeholder {
243
    color: #ccc;
244
    font-size: 15px;
245
}
246
 
6716 stevensc 247
#root {
248
    position: relative;
249
    min-height: 80vh;
6542 stevensc 250
}