-
Notifications
You must be signed in to change notification settings - Fork 0
/
ptc-custom.scss
71 lines (53 loc) · 1.48 KB
/
ptc-custom.scss
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*-- scss:defaults --*/
// Body
$body-bg: #fafafa !default;
$body-color: #222222 !default;
$code-block-bg: #f6f1ea !default;
$code-bg: #f6f1ea !default;
$link-color: #000000 !default;
// Navbar
$navbar-light-bg: #31347a !default;
$navbar-dark-bg: #31347a !default;
// Fonts
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');
// stylelint-disable value-keyword-case
$font-family-sans-serif: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
$font-family-serif: "Merriweather", Georgia, Cambria, "Times New Roman", Times, serif !default;
$font-family-logo: "Montserrat", "Noto Sans";
// stylelint-enable
$font-size-root: 1.2rem;
/*-- scss:rules --*/
// Typography
p {
font-family: $font-family-sans-serif;
}
blockquote {
font-style: italic;
}
footer {
font-size: $font-size-sm;
}
h1, h2, h3, h4, h5 {
font-family: $font-family-serif;
font-weight: 300;
}
.navbar {
padding-top: 0px;
padding-bottom: 0px;
background: #31347a;
font-family: $font-family-logo;
font-weight: 600;
}
.title {
font-weight: 400;
font-size: 1.6rem
}
.listing-title {
font-weight: 400;
font-size: 1.1rem;
}
.lead {
font-size: 1.2rem;
color: $gray-600;
font-family: $font-family-serif;
}