forked from JamBrain/JamBrain
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfonts.less
More file actions
40 lines (34 loc) · 951 Bytes
/
fonts.less
File metadata and controls
40 lines (34 loc) · 951 Bytes
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
/* Helvetica - Apple */
/* Roboto - Android */
/* Arial Nova - Win10 */
/* Segoe UI - WinVista+ */
/* Ubuntu Light - Ubuntu */
html, button, input, ._font1 {
/* Lato - Standard text font (Google Fonts) */
font-family: "Roboto", "Helvetica Neue", "Arial Nova", "Segoe UI", "Ubuntu Light", sans-serif;
/* font-family: "Lato", "Helvetica Neue", "Roboto", "Arial Nova", "Segoe UI", "Ubuntu Light", sans-serif;*/
/* Weight (400 is Normal, 300 is Light/Book) */
font-weight: 300;
}
strong, b, h1, h2, h3, h4, h5, h6, ._bold, ._strong {
/* font-weight: bold is at 700, but not all browsers know that (IE) */
font-weight: 700;
}
._font2 {
/* Raleway - Title font (Google Fonts) */
font-family: "Raleway", "Helvetica Neue", "Roboto", "Arial Nova", "Segoe UI", "Ubuntu Light", sans-serif;
font-weight: 600;
/* slightly heavier bold */
& strong,
& b,
& h1,
& h2,
& h3,
& h4,
& h5,
& h6,
& ._bold,
& ._strong {
font-weight: 800;
}
}