jekyll-theme-pga-default 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/_includes/component.html +29 -0
  3. data/_includes/foot.html +3 -0
  4. data/_includes/head.html +20 -0
  5. data/_includes/header.html +34 -0
  6. data/_layouts/default.html +12 -1
  7. data/_sass/_articles.scss +324 -0
  8. data/_sass/_buttons.scss +17 -0
  9. data/_sass/_cards.scss +26 -0
  10. data/_sass/_components.scss +577 -0
  11. data/_sass/_font-awesome.scss +2337 -0
  12. data/_sass/_fonts.scss +0 -0
  13. data/_sass/_footer.scss +93 -0
  14. data/_sass/_form.scss +81 -0
  15. data/_sass/_functions.scss +86 -0
  16. data/_sass/_header.scss +282 -0
  17. data/_sass/_highlight.scss +163 -0
  18. data/_sass/_icons-font.scss +47 -0
  19. data/_sass/_icons.scss +3 -0
  20. data/_sass/_jumbotron.scss +90 -0
  21. data/_sass/_keyframes.scss +23 -0
  22. data/_sass/_loading.scss +43 -0
  23. data/_sass/_mixin.scss +63 -0
  24. data/_sass/_navs.scss +64 -0
  25. data/_sass/_owl.carousel.scss +368 -0
  26. data/_sass/_reset.scss +5 -0
  27. data/_sass/_styleguide.scss +273 -0
  28. data/_sass/_table.scss +160 -0
  29. data/_sass/_tiles.scss +196 -0
  30. data/_sass/_typography.scss +151 -0
  31. data/_sass/_variables-custom.scss +612 -0
  32. data/_sass/components/_breadcrumbs.scss +42 -0
  33. data/_sass/components/_button.scss +17 -0
  34. data/_sass/components/_footer.scss +92 -0
  35. data/_sass/components/_header.scss +336 -0
  36. data/_sass/components/_nav-sidebar.scss +217 -0
  37. data/assets/fonts/.DS_Store +0 -0
  38. data/assets/fonts/icomoon/icomoon.eot +0 -0
  39. data/assets/fonts/icomoon/icomoon.svg +16 -0
  40. data/assets/fonts/icomoon/icomoon.ttf +0 -0
  41. data/assets/fonts/icomoon/icomoon.woff +0 -0
  42. data/assets/images/pga-logo-tm.svg +72 -0
  43. data/assets/scripts/bootstrap.min.js +7 -0
  44. data/assets/scripts/jquery-3.3.1.min.js +2 -0
  45. data/assets/scripts/popper.min.js +5 -0
  46. metadata +46 -3
@@ -0,0 +1,151 @@
1
+ h1,
2
+ h2,
3
+ h3,
4
+ h4 {
5
+ font-family: $font-family-heading;
6
+ }
7
+
8
+ h1 {
9
+ font-size: 40px;
10
+ font-weight: 700;
11
+ line-height: 0.95;
12
+ letter-spacing: -0.3px;
13
+ @include media-breakpoint-down(xs) {
14
+ font-size: 8.5vw;
15
+ }
16
+ }
17
+
18
+ h2 {
19
+ font-weight: 700;
20
+ line-height: 1.09;
21
+ letter-spacing: -0.3px;
22
+ @include media-breakpoint-down(sm) {
23
+ font-size: 7vw;
24
+ }
25
+ }
26
+
27
+ h3 {
28
+ line-height: 1.25;
29
+ letter-spacing: -0.3px;
30
+ font-weight: 700;
31
+ }
32
+
33
+ h4 {
34
+ font-weight: 700;
35
+ line-height: 1.4;
36
+ letter-spacing: -0.2px;
37
+ }
38
+
39
+ h6 {
40
+ font-weight: 500;
41
+ line-height: 2;
42
+ color: $navy;
43
+ }
44
+
45
+ .section-title {
46
+ margin-bottom: 2rem;
47
+ text-align: center;
48
+ color: theme-color("secondary");
49
+ }
50
+
51
+ .section-heading {
52
+ margin-bottom: 2rem;
53
+ display: flex;
54
+ justify-content: space-between;
55
+ align-items: center;
56
+ padding: 0 30px;
57
+ @include media-breakpoint-down(sm) {
58
+ padding: 0;
59
+ }
60
+
61
+ a {
62
+ font-weight: 500;
63
+ font-size: 0.75rem;
64
+ @include media-breakpoint-down(sm) {
65
+ line-height: 1.33;
66
+ text-align: right;
67
+ }
68
+ }
69
+
70
+ h1,
71
+ h2,
72
+ h3,
73
+ h4,
74
+ h5,
75
+ h6 {
76
+ color: theme-color("secondary");
77
+ margin-bottom: 0;
78
+ }
79
+ }
80
+
81
+ p {
82
+ font-size: 0.875rem;
83
+ line-height: 1.5;
84
+ color: $blue-grey;
85
+ }
86
+
87
+ ol,
88
+ ul {
89
+ font-size: 0.875rem;
90
+ line-height: 1.5;
91
+ color: $blue-grey;
92
+ }
93
+
94
+ .tiles-label {
95
+ font-size: 0.625rem;
96
+ }
97
+
98
+ .title-base {
99
+ font-family: $font-family-base;
100
+ }
101
+
102
+ .text-white {
103
+ h1,
104
+ h2,
105
+ h3,
106
+ h4,
107
+ h5,
108
+ h6,
109
+ p,
110
+ span {
111
+ color: $white !important;
112
+ }
113
+ }
114
+
115
+ a {
116
+ font-weight: 500;
117
+ }
118
+
119
+ .no-wrap {
120
+ white-space: nowrap;
121
+ }
122
+
123
+ .checked-list {
124
+ padding-left: 3px;
125
+
126
+ li {
127
+ display: inline-block;
128
+ color: $blue-grey;
129
+ line-height: 1.5;
130
+ font-size: 0.875rem;
131
+ margin-bottom: 0.5rem;
132
+
133
+ &:before {
134
+ content: '';
135
+ display: inline-block;
136
+ width: 6px;
137
+ height: 12px;
138
+ margin-right: 10px;
139
+ border: solid darken($blue-grey, 20%);
140
+ border-width: 0 2px 2px 0;
141
+ transform: rotate(45deg);
142
+ }
143
+ }
144
+ }
145
+
146
+ label {
147
+ margin-bottom: 0.2rem;
148
+ color: $blue-grey;
149
+ font-weight: 600;
150
+ font-size: 0.875rem;
151
+ }