Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6790 | Rev 7068 | Ir a la última revisión | | 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
 
147
a,
148
a:hover {
149
    text-decoration: none;
6926 stevensc 150
    display: inline-flex;
6542 stevensc 151
}
152
 
153
blockquote,
154
q {
155
    quotes: none;
156
}
157
 
158
blockquote:before,
159
blockquote:after,
160
q:before,
161
q:after {
162
    content: "";
163
    content: none;
164
}
165
 
166
button {
167
    outline: none;
168
}
169
 
170
table {
171
    border-collapse: collapse;
172
    border-spacing: 0;
173
}
174
 
175
* {
176
    margin: 0;
177
    padding: 0;
178
}
179
 
180
a:focus {
181
    text-decoration: none;
182
    outline: none;
183
}
184
 
185
a:hover {
186
    color: #fff;
187
}
188
 
189
button,
190
button:active,
191
button:focus {
192
    outline: none;
193
    border: none;
194
    background: transparent;
195
}
196
 
197
input {
198
    outline: none;
199
}
200
 
201
textarea {
202
    outline: none;
203
}
204
 
205
section {
206
    width: 100%;
207
    position: relative;
208
}
209
 
210
p {
211
    font-size: 14px;
212
    line-height: 1;
213
    color: $font-color;
214
}
215
 
216
hr {
217
    margin-top: 1rem;
218
    margin-bottom: 1rem;
219
    border: 0;
220
    border-top: 1px solid #e5e5e5 !important;
221
}
222
 
223
/* ================ CROSS BROWSER COMPATABILITY =============== */
224
 
225
img {
226
    max-width: 100%;
227
}
228
 
6790 stevensc 229
*::-webkit-scrollbar {
230
    width: 6px !important;
231
    height: 6px !important;
232
}
233
 
234
*::-webkit-scrollbar-thumb {
235
    background-color: rgba(0, 0, 0, 0.2);
236
}
237
 
238
*::-webkit-scrollbar-track {
239
    background: rgba(255, 255, 255, 0.08);
240
}
241
 
242
*::-webkit-input-placeholder {
243
    color: #ccc;
244
    font-size: 15px;
245
}
246
 
247
*::-moz-placeholder {
248
    color: #ccc;
249
    font-size: 15px;
250
}
251
 
6716 stevensc 252
#root {
253
    position: relative;
254
    min-height: 80vh;
6542 stevensc 255
}