jekyll-theme-centos 2.1.1.beta.1 → 2.1.1.beta.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,79 @@
1
+ /* Montserrat helper mixins (adapted from Overpass helper mixins) */
2
+
3
+ //-- This is a map of the current font weights, keyed on their file names
4
+ $supported-weights: (
5
+ Thin: 100,
6
+ ExtraLight: 200,
7
+ Light: 300,
8
+ Regular: 400,
9
+ Medium: 500,
10
+ SemiBold: 600,
11
+ Bold: 700,
12
+ ExtraBold: 800,
13
+ Black: 900
14
+ );
15
+
16
+ $supported-italic-weights: (
17
+ ThinItalic: 100,
18
+ ExtraLightItalic: 200,
19
+ LightItalic: 300,
20
+ Italic: 400,
21
+ MediumItalic: 500,
22
+ SemiBoldItalic: 600,
23
+ BoldItalic: 700,
24
+ ExtraBoldItalic: 800,
25
+ BlackItalic: 900
26
+ );
27
+
28
+ //-- This mixins will dynamically print the font-face declarations based on your levels of support
29
+ // * Weights can be limited to those your wish to incorporate in your styles; if left with defaults,
30
+ // this will add support for all supported font variations
31
+ // * The weight map can be customized if you wish to set your own values
32
+ // Example: To use `font-weight: bolder` instead of `font-weight: 600`, we create a custom map
33
+ // that maps the key bold to the value bolder -> `bold: bolder`
34
+ // * The path to dist represents the location of the overpass font files relative to your architecture
35
+ @mixin print-montserrat-font-face(
36
+
37
+ $weights: map-keys($supported-weights),
38
+ $weight-map: $supported-weights,
39
+
40
+ $italic-weights: map-keys($supported-italic-weights),
41
+ $italic-weight-map: $supported-italic-weights,
42
+
43
+ $path_to_dist: '../webfonts/'
44
+ ) {
45
+ @each $weight in $weights {
46
+ @font-face {
47
+ font-family: 'Montserrat';
48
+ src: url("#{$path_to_dist}Montserrat-#{$weight}.woff2") format("woff2"), url("#{$path_to_dist}Montserrat-#{$weight}.woff") format("woff");
49
+ font-weight: map-get($weight-map, $weight);
50
+ font-style: normal;
51
+ }
52
+ }
53
+ @each $italic-weight in $italic-weights {
54
+ @font-face {
55
+ font-family: 'Montserrat';
56
+ src: url("#{$path_to_dist}Montserrat-#{$italic-weight}.woff2") format("woff2"), url("#{$path_to_dist}Montserrat-#{$italic-weight}.woff") format("woff");
57
+ font-weight: map-get($italic-weight-map, $italic-weight);
58
+ font-style: italic;
59
+ }
60
+ }
61
+ @each $weight in $weights {
62
+ @font-face {
63
+ font-family: 'Montserrat Alternates';
64
+ src: url("#{$path_to_dist}MontserratAlternates-#{$weight}.woff2") format("woff2"), url("#{$path_to_dist}Montserrat-#{$weight}.woff") format("woff");
65
+ font-weight: map-get($weight-map, $weight);
66
+ font-style: normal;
67
+ }
68
+ }
69
+ @each $italic-weight in $italic-weights {
70
+ @font-face {
71
+ font-family: 'Montserrat Alternates';
72
+ src: url("#{$path_to_dist}MontserratAlternates-#{$italic-weight}.woff2") format("woff2"), url("#{$path_to_dist}Montserrat-#{$italic-weight}.woff") format("woff");
73
+ font-weight: map-get($italic-weight-map, $italic-weight);
74
+ font-style: italic;
75
+ }
76
+ }
77
+ }
78
+
79
+ @include print-montserrat-font-face;
@@ -0,0 +1,33 @@
1
+ /* Overpass Mono helper mixins */
2
+
3
+ //-- This is a map of the current font weights, keyed on their file names
4
+ $supported-weights: (
5
+ light: 300,
6
+ regular: 400,
7
+ semibold: 500,
8
+ bold: 600
9
+ );
10
+
11
+ //-- This mixins will dynamically print the font-face declarations based on your levels of support
12
+ // * Weights can be limited to those your wish to incorporate in your styles; if left with defaults,
13
+ // this will add support for all supported font variations
14
+ // * The weight map can be customized if you wish to set your own values
15
+ // Example: To use `font-weight: bolder` instead of `font-weight: 600`, we create a custom map
16
+ // that maps the key bold to the value bolder -> `bold: bolder`
17
+ // * The path to dist represents the location of the overpass font files relative to your architecture
18
+ @mixin print-overpass-mono-font-face(
19
+ $weights: map-keys($supported-weights),
20
+ $weight-map: $supported-weights,
21
+ $path_to_dist: '../webfonts/'
22
+ ) {
23
+ @each $weight in $weights {
24
+ @font-face {
25
+ font-family: 'overpass-mono';
26
+ src: url("#{$path_to_dist}overpass-mono-#{$weight}.woff2") format("woff2"), url("#{$path_to_dist}overpass-mono-#{$weight}.woff") format("woff");
27
+ font-weight: map-get($weight-map, $weight);
28
+ font-style: normal;
29
+ }
30
+ }
31
+ }
32
+
33
+ @include print-overpass-mono-font-face;
@@ -1,16 +1,20 @@
1
1
  ---
2
2
  ---
3
3
  // Bootstrap
4
- @import "bootstrap/scss/functions";
4
+ @import "bootstrap/functions";
5
5
  @import "centos/variables";
6
- @import "bootstrap/scss/bootstrap";
6
+ @import "bootstrap/bootstrap";
7
7
  @import "centos/headings";
8
8
  @import "centos/links";
9
9
  @import "centos/sponsors";
10
10
 
11
11
  // Fontawesome
12
- @import "@fortawesome/fontawesome-free/scss/fontawesome";
13
- @import "@fortawesome/fontawesome-free/scss/brands";
14
- @import "@fortawesome/fontawesome-free/scss/solid";
15
- @import "centos/fonts/montserrat";
16
- @import "centos/fonts/overpass";
12
+ @import "fontawesome-free/fontawesome";
13
+ @import "fontawesome-free/brands";
14
+ @import "fontawesome-free/solid";
15
+
16
+ // Montserrat
17
+ @import "montserrat/montserrat";
18
+
19
+ // Overpass
20
+ @import "overpass-mono/overpass-mono";
data/default.md ADDED
@@ -0,0 +1,165 @@
1
+ ---
2
+ title: "Nam euismod tellus id erat."
3
+ title_lead: |
4
+ The Special Interest Groups (SIGs), are the teams responsible for their
5
+ specific CentOS Project variants. Variants are specialized and focused rebuilds
6
+ of CentOS to meet the needs and requirements of their corresponding communities
7
+ and the technology associated with those communities.
8
+ layout: default
9
+ ---
10
+
11
+ SIGs are usually self-forming around a technology by a small community of
12
+ enthusiasts and interested parties. In addition to the existing CentOS SIGs, it
13
+ is expected that <code>additional SIGs</code>, as approved by the CentOS Board, will be
14
+ created.
15
+
16
+ <em>Praesent fermentum <code>tempor tellus</code>. <strong>Nullam tempus. Mauris ac <code>felis</code> vel velit tristique imperdiet.</strong> Donec at pede. Etiam vel neque nec dui dignissim bibendum. Vivamus id enim. Phasellus neque orci, porta a, aliquet quis, semper a, massa. Phasellus purus. Pellentesque tristique imperdiet tortor. Nam euismod tellus id erat. Nullam eu ante vel est convallis dignissim. Fusce suscipit, wisi nec facilisis facilisis, est dui fermentum leo, quis tempor ligula erat quis odio.</em>
17
+
18
+ ```
19
+ Each group will be responsible for its own variant in CentOS that is
20
+ specifically targeted towards its community (e.g., The CentOS FooBar SIG
21
+ creates a CentOS variant targeted to FooBar users and developers, the CentOS
22
+ Hosting SIG builds a variant for web hosters, included in the CentOS
23
+ distribution). The SIG is the deciding authority on what is required in their
24
+ variant to satisfy the needs of their community, with the understanding that
25
+ the Board has ultimate oversight as explained elsewhere. If required, the
26
+ CentOS Board will help the individual SIGs to reach consensus on any issues or
27
+ problems.
28
+ ```
29
+
30
+ SIGs are the only way for an entity to use and associate the CentOS brand with
31
+ a variant. You can always use Git and the repo to fork and try-out ideas, but
32
+ only those packages in git.centos.org and released and signed by CentOS can be
33
+ called 'CentOS'.
34
+
35
+ Another type of SIG is functional, focused on maintaining parts of the Project
36
+ itself, such as infrastructure, documentation, and design. A unique SIG is the
37
+ Core SIG that builds and maintains the core CentOS derivative of Red Hat
38
+ Enterprise Linux. It is unique because it is the central, orchestrating
39
+ platform that all other variants are built from.
40
+
41
+ # CentOS Core SIG Responsibilities
42
+
43
+ * Build the CentOS release.
44
+ * _Sign_ the CentOS release.
45
+ * Push official CentOS releases to the initial mirror.
46
+ * Coordinate with upstream as required.
47
+ * Accept changes into Git.
48
+ * Manage Git licensing and contribution policies.
49
+
50
+ ## Level 2
51
+ Fusce suscipit, wisi nec facilisis facilisis, est dui fermentum leo, quis tempor ligula erat quis odio. Nunc porta vulputate tellus. Nunc rutrum turpis sed pede. Sed bibendum. Aliquam posuere. Nunc aliquet, augue nec adipiscing interdum, lacus tellus malesuada massa, quis varius mi purus non odio. Pellentesque condimentum, magna ut suscipit hendrerit, ipsum augue ornare nulla, non luctus diam neque sit amet urna. Curabitur vulputate vestibulum lorem. Fusce sagittis, libero non molestie mollis, magna orci ultrices dolor, at vulputate neque nulla lacinia eros. Sed id ligula quis est convallis tempor. Curabitur lacinia pulvinar nibh. Nam a sapien.
52
+ ### Level 3
53
+ Fusce suscipit, wisi nec facilisis facilisis, est dui fermentum leo, quis tempor ligula erat quis odio. Nunc porta vulputate tellus. Nunc rutrum turpis sed pede. Sed bibendum. Aliquam posuere. Nunc aliquet, augue nec adipiscing interdum, lacus tellus malesuada massa, quis varius mi purus non odio. Pellentesque condimentum, magna ut suscipit hendrerit, ipsum augue ornare nulla, non luctus diam neque sit amet urna. Curabitur vulputate vestibulum lorem. Fusce sagittis, libero non molestie mollis, magna orci ultrices dolor, at vulputate neque nulla lacinia eros. Sed id ligula quis est convallis tempor. Curabitur lacinia pulvinar nibh. Nam a sapien.
54
+ #### Level 4
55
+ Fusce suscipit, wisi nec facilisis facilisis, est dui fermentum leo, quis tempor ligula erat quis odio. Nunc porta vulputate tellus. Nunc rutrum turpis sed pede. Sed bibendum. Aliquam posuere. Nunc aliquet, augue nec adipiscing interdum, lacus tellus malesuada massa, quis varius mi purus non odio. Pellentesque condimentum, magna ut suscipit hendrerit, ipsum augue ornare nulla, non luctus diam neque sit amet urna. Curabitur vulputate vestibulum lorem. Fusce sagittis, libero non molestie mollis, magna orci ultrices dolor, at vulputate neque nulla lacinia eros. Sed id ligula quis est convallis tempor. Curabitur lacinia pulvinar nibh. Nam a sapien.
56
+ ##### Level 5
57
+ Fusce suscipit, wisi nec facilisis facilisis, est dui fermentum leo, quis tempor ligula erat quis odio. Nunc porta vulputate tellus. Nunc rutrum turpis sed pede. Sed bibendum. Aliquam posuere. Nunc aliquet, augue nec adipiscing interdum, lacus tellus malesuada massa, quis varius mi purus non odio. Pellentesque condimentum, magna ut suscipit hendrerit, ipsum augue ornare nulla, non luctus diam neque sit amet urna. Curabitur vulputate vestibulum lorem. Fusce sagittis, libero non molestie mollis, magna orci ultrices dolor, at vulputate neque nulla lacinia eros. Sed id ligula quis est convallis tempor. Curabitur lacinia pulvinar nibh. Nam a sapien.
58
+ ###### Level 6
59
+ Fusce suscipit, wisi nec facilisis facilisis, est dui fermentum leo, quis tempor ligula erat quis odio. Nunc porta vulputate tellus. Nunc rutrum turpis sed pede. Sed bibendum. Aliquam posuere. Nunc aliquet, augue nec adipiscing interdum, lacus tellus malesuada massa, quis varius mi purus non odio. Pellentesque condimentum, magna ut suscipit hendrerit, ipsum augue ornare nulla, non luctus diam neque sit amet urna. Curabitur vulputate vestibulum lorem. Fusce sagittis, libero non molestie mollis, magna orci ultrices dolor, at vulputate neque nulla lacinia eros. Sed id ligula quis est convallis tempor. Curabitur lacinia pulvinar nibh. Nam a sapien.
60
+
61
+ # Variant SIG Responsibilities
62
+
63
+ * Create and maintain one or more variations with technology in CentOS on top of or modifications to the core base.
64
+ * Foster a user community as a primary purpose of the variant.
65
+ * Keep the Project artifacts (the variant) relevant and useful to the user community.
66
+ * Ensure the software brought in to support the variant is licensed and prepared properly for packaging and distribution as part of the CentOS Project.
67
+ * Oversee inclusions of code related to the variant in to git.centos.org.
68
+ * Conduct the business of the SIG following accepted open source practices around meritocracy and consensus decision making.
69
+
70
+ # Functional SIG Responsibilities
71
+ * Accountable for designing, building, and maintaining key Project component(s).
72
+ * Make the functional area open for participation, with barriers to contribution as low as feasible and reasonable.
73
+ * Foster a community of users and doers around the functional aspect, to share the responsibility, workload, and innovation.
74
+ * Work within given legal constraints and requirements.
75
+
76
+ # SIG Governance
77
+
78
+ <figure class="figure">
79
+ <img class="figure-img img-fluid" src="/about/governance/sig-maturity-crossover.png" alt="SIG Governance">
80
+ </figure>
81
+
82
+ The SIGs themselves also have a merit path toward autonomy and accountability
83
+ for Project aspects. The determination of merit level is reflected in the
84
+ amount of oversight required by the Board and the SIGs ability to self-sign and
85
+ release software builds. As merit increases, Board oversight goes down, with a
86
+ transition spot in the middle where the SIG naturally obtains more autonomy,
87
+ usually toward the end of the "Early" phase.
88
+
89
+ __Sandboxes__ are the entry point for all proposed SIGs. To enter, there must
90
+ be a Champion from or approved by the Board and a proposal (which indicates the
91
+ reason for the SIG, the expected audience, initial team, risks, etc.) For a SIG
92
+ to be created, there must be at least 3 +1 votes from the Board (NOT including
93
+ the Champion) and zero (nil) -1 votes. When approved, the Champion becomes the
94
+ formal Mentor of the Sandbox SIG.
95
+
96
+ Sandboxes cannot make formal releases, but can create releases that allow
97
+ people, developers, etc. to use, test, and play with the build. Sandboxes are
98
+ also closely monitored by the Board to ensure that they are attracting interest
99
+ and developers and users are learning the ropes regarding SIG operation. All
100
+ new committers, developers, SIG core team members, etc. must be approved by the
101
+ Board.
102
+
103
+ SIGs that have expressed a level of merit, as determined by the Board, will
104
+ move to the __Early__ SIG stage (Sandboxes can request graduation to Early, if
105
+ they like). These SIGs are allowed to create formal releases, but the release
106
+ must be approved by the Board and signed by the Mentor. In all other matters,
107
+ however, they are self-sufficient and no longer require Board approval, such as
108
+ as in adding committers and so forth. Movement from Sandbox to Early is via 3
109
+ +1 vote of the Board (Mentor not included) and zero (nil) -1 votes.
110
+
111
+ The final stage is the __Mature__ SIG. Again, this graduation is based on the
112
+ judgment and determination of the Board, but this movement must be a unanimous
113
+ decision of the Board. The Mature SIG has full control over the SIG, pulling in
114
+ its own sources to git.centos.org, its releases, its internal governance, and
115
+ has the ability to self-sign releases. The Board members may vote in, or
116
+ participate in any SIG decision at any time.
117
+
118
+ In both the Sandbox and Early SIGs, the role of the Board is primarily to
119
+ facilitate the movement of those SIGs towards the Mature level; it serves as an
120
+ initial gateway with the goal of getting out of the way of the SIGs.
121
+
122
+ Note that in all cases, maturity is a measure of the community itself, and not
123
+ the codebase or the actual SIG variant release. A mature SIG could create a
124
+ non-mature (e.g., Alpha or Beta release) distribution and, conversely, a
125
+ Sandbox SIG could produce a very mature (robust and reliable) distro.
126
+
127
+ # Community and SIGs
128
+
129
+ SIGs represent the true power and value of the CentOS Project. As seen in the
130
+ current CentOS Dojos, and in the CentOS community itself, the builds provide a
131
+ safe, neutral, and communal central meeting place for major technology areas.
132
+ This is the reason why SIGs should not be program/project specific (e.g., a
133
+ MariaDB rebuild), but rather technology-area focused (e.g., the "Hoster's"
134
+ rebuild). By creating a central point where all projects and communities can
135
+ interact, using the OS as the common foundation, upstream projects will be able
136
+ to reach and interface with a much larger audience.
137
+
138
+ It is expected that SIGs may propose significant forking of the base CentOS
139
+ core, such as introducing a new Python version or Linux kernel. It is the job
140
+ of the Board and CentOS Core SIG to oversee and approve any forks that are
141
+ pulled back into Git, including to ensure that these forks are supportable.
142
+ This support is best done by an active and engaged variant SIG. The Board or
143
+ CentOS Core SIG can pull a variant from release if they reasonably believe the
144
+ variant SIG is unable to support the variant. Another option is reassigning an
145
+ active variant from a dead SIG to a willing living SIG. The Board is
146
+ specifically not limited in what it can do to protect the quality of the CentOS
147
+ mark where it comes to the content and quality of a variant.
148
+
149
+ # Creating a new SIG
150
+
151
+ The process of creating a new SIG involves two major components:
152
+ community building and the administrative side.
153
+
154
+ Bring your SIG proposal first to the centos-devel mailing list to find
155
+ other like-minded people who wish to start the SIG with you. Also look
156
+ around outside of the CentOS project for people who may want to
157
+ distribute projects on CentOS
158
+
159
+ Once you have a core group that wants to make this happen, open a ticket
160
+ on the [board issue tracker](https://git.centos.org/centos/board/issues)
161
+ with your proposed SIG, and someone there will walk you through the
162
+ process.
163
+
164
+ For the current list of active SIGs, refer to
165
+ [http://wiki.centos.org/SpecialInterestGroup](http://wiki.centos.org/SpecialInterestGroup)
data/index.md ADDED
@@ -0,0 +1,9 @@
1
+ ---
2
+ # Feel free to add content and custom Front Matter to this file.
3
+ # To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
4
+
5
+ layout: home
6
+ title: jekyll-theme-centos
7
+ title_lead: Jekyll theme for CentOS project websites.
8
+
9
+ ---
data/people.md ADDED
@@ -0,0 +1,8 @@
1
+ ---
2
+
3
+ username: username
4
+ fullname: username
5
+ layout: people
6
+
7
+ ---
8
+
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-centos
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.1.beta.1
4
+ version: 2.1.1.beta.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Release
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-12-28 00:00:00.000000000 Z
11
+ date: 2022-12-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -59,6 +59,9 @@ executables: []
59
59
  extensions: []
60
60
  extra_rdoc_files: []
61
61
  files:
62
+ - _data/aws-images.csv
63
+ - _data/full-altarchlist.csv
64
+ - _data/full-mirrorlist.csv
62
65
  - _includes/blog/header.html
63
66
  - _includes/breadcrumbs.html
64
67
  - _includes/default/alert-danger.html
@@ -115,10 +118,13 @@ files:
115
118
  - _sass/centos/_links.scss
116
119
  - _sass/centos/_sponsors.scss
117
120
  - _sass/centos/_variables.scss
118
- - _sass/centos/fonts/_montserrat.scss
119
- - _sass/centos/fonts/_overpass.scss
121
+ - _sass/montserrat/_montserrat.scss
122
+ - _sass/overpass-mono/_overpass-mono.scss
120
123
  - assets/css/stylesheet.min.scss
121
124
  - assets/img/people/username.png
125
+ - default.md
126
+ - index.md
127
+ - people.md
122
128
  homepage: https://gitlab.com/CentOS/artwork/centos-web/jekyll-theme-centos
123
129
  licenses:
124
130
  - MIT
@@ -1,253 +0,0 @@
1
- /** Montserrat Thin **/
2
- @font-face {
3
- font-family: "Montserrat";
4
- font-weight: 100;
5
- font-style: normal;
6
- src: url("../webfonts/Montserrat-Thin.woff2") format("woff2"), url("../webfonts/Montserrat-Thin.woff") format("woff");
7
- }
8
- /** Montserrat Thin-Italic **/
9
- @font-face {
10
- font-family: "Montserrat";
11
- font-weight: 100;
12
- font-style: italic;
13
- src: url("../webfonts/Montserrat-ThinItalic.woff2") format("woff2"), url("../webfonts/Montserrat-ThinItalic.woff") format("woff");
14
- }
15
- /** Montserrat ExtraLight **/
16
- @font-face {
17
- font-family: "Montserrat";
18
- font-weight: 200;
19
- font-style: normal;
20
- src: url("../webfonts/Montserrat-ExtraLight.woff2") format("woff2"), url("../webfonts/Montserrat-ExtraLight.woff") format("woff");
21
- }
22
- /** Montserrat ExtraLight-Italic **/
23
- @font-face {
24
- font-family: "Montserrat";
25
- font-weight: 200;
26
- font-style: italic;
27
- src: url("../webfonts/Montserrat-ExtraLightItalic.woff2") format("woff2"), url("../webfonts/Montserrat-ExtraLightItalic.woff") format("woff");
28
- }
29
- /** Montserrat Light **/
30
- @font-face {
31
- font-family: "Montserrat";
32
- font-weight: 300;
33
- font-style: normal;
34
- src: url("../webfonts/Montserrat-Light.woff2") format("woff2"), url("../webfonts/Montserrat-Light.woff") format("woff");
35
- }
36
- /** Montserrat Light-Italic **/
37
- @font-face {
38
- font-family: "Montserrat";
39
- font-weight: 300;
40
- font-style: italic;
41
- src: url("../webfonts/Montserrat-LightItalic.woff2") format("woff2"), url("../webfonts/Montserrat-LightItalic.woff") format("woff");
42
- }
43
- /** Montserrat Regular **/
44
- @font-face {
45
- font-family: "Montserrat";
46
- font-weight: 400;
47
- font-style: normal;
48
- src: url("../webfonts/Montserrat-Regular.woff2") format("woff2"), url("../webfonts/Montserrat-Regular.woff") format("woff");
49
- }
50
- /** Montserrat Regular-Italic **/
51
- @font-face {
52
- font-family: "Montserrat";
53
- font-weight: 400;
54
- font-style: italic;
55
- src: url("../webfonts/Montserrat-Italic.woff2") format("woff2"), url("../webfonts/Montserrat-Italic.woff") format("woff");
56
- }
57
- /** Montserrat Medium **/
58
- @font-face {
59
- font-family: "Montserrat";
60
- font-weight: 500;
61
- font-style: normal;
62
- src: url("../webfonts/Montserrat-Medium.woff2") format("woff2"), url("../webfonts/Montserrat-Medium.woff") format("woff");
63
- }
64
- /** Montserrat Medium-Italic **/
65
- @font-face {
66
- font-family: "Montserrat";
67
- font-weight: 500;
68
- font-style: italic;
69
- src: url("../webfonts/Montserrat-MediumItalic.woff2") format("woff2"), url("../webfonts/Montserrat-MediumItalic.woff") format("woff");
70
- }
71
- /** Montserrat SemiBold **/
72
- @font-face {
73
- font-family: "Montserrat";
74
- font-weight: 600;
75
- font-style: normal;
76
- src: url("../webfonts/Montserrat-SemiBold.woff2") format("woff2"), url("../webfonts/Montserrat-SemiBold.woff") format("woff");
77
- }
78
- /** Montserrat SemiBold-Italic **/
79
- @font-face {
80
- font-family: "Montserrat";
81
- font-weight: 600;
82
- font-style: italic;
83
- src: url("../webfonts/Montserrat-SemiBoldItalic.woff2") format("woff2"), url("../webfonts/Montserrat-SemiBoldItalic.woff") format("woff");
84
- }
85
- /** Montserrat Bold **/
86
- @font-face {
87
- font-family: "Montserrat";
88
- font-weight: 700;
89
- font-style: normal;
90
- src: url("../webfonts/Montserrat-Bold.woff2") format("woff2"), url("../webfonts/Montserrat-Bold.woff") format("woff");
91
- }
92
- /** Montserrat Bold-Italic **/
93
- @font-face {
94
- font-family: "Montserrat";
95
- font-weight: 700;
96
- font-style: italic;
97
- src: url("../webfonts/Montserrat-BoldItalic.woff2") format("woff2"), url("../webfonts/Montserrat-BoldItalic.woff") format("woff");
98
- }
99
- /** Montserrat ExtraBold **/
100
- @font-face {
101
- font-family: "Montserrat";
102
- font-weight: 800;
103
- font-style: normal;
104
- src: url("../webfonts/Montserrat-ExtraBold.woff2") format("woff2"), url("../webfonts/Montserrat-ExtraBold.woff") format("woff");
105
- }
106
- /** Montserrat ExtraBold-Italic **/
107
- @font-face {
108
- font-family: "Montserrat";
109
- font-weight: 800;
110
- font-style: italic;
111
- src: url("../webfonts/Montserrat-ExtraBoldItalic.woff2") format("woff2"), url("../webfonts/Montserrat-ExtraBoldItalic.woff") format("woff");
112
- }
113
- /** Montserrat Black **/
114
- @font-face {
115
- font-family: "Montserrat";
116
- font-weight: 900;
117
- font-style: normal;
118
- src: url("../webfonts/Montserrat-Black.woff2") format("woff2"), url("../webfonts/Montserrat-Black.woff") format("woff");
119
- }
120
- /** Montserrat Black-Italic **/
121
- @font-face {
122
- font-family: "Montserrat";
123
- font-weight: 900;
124
- font-style: italic;
125
- src: url("../webfonts/Montserrat-BlackItalic.woff2") format("woff2"), url("../webfonts/Montserrat-BlackItalic.woff") format("woff");
126
- }
127
- /** =================== MONTSERRAT ALTERNATES =================== **/
128
- /** Montserrat Alternates Thin **/
129
- @font-face {
130
- font-family: "Montserrat Alternates";
131
- font-weight: 100;
132
- font-style: normal;
133
- src: url("../webfonts/MontserratAlternates-Thin.woff2") format("woff2"), url("../webfonts/MontserratAlternates-Thin.woff") format("woff");
134
- }
135
- /** Montserrat Alternates Thin-Italic **/
136
- @font-face {
137
- font-family: "Montserrat Alternates";
138
- font-weight: 100;
139
- font-style: italic;
140
- src: url("../webfonts/MontserratAlternates-ThinItalic.woff2") format("woff2"), url("../webfonts/MontserratAlternates-ThinItalic.woff") format("woff");
141
- }
142
- /** Montserrat Alternates ExtraLight **/
143
- @font-face {
144
- font-family: "Montserrat Alternates";
145
- font-weight: 200;
146
- font-style: normal;
147
- src: url("../webfonts/MontserratAlternates-ExtraLight.woff2") format("woff2"), url("../webfonts/MontserratAlternates-ExtraLight.woff") format("woff");
148
- }
149
- /** Montserrat Alternates ExtraLight-Italic **/
150
- @font-face {
151
- font-family: "Montserrat Alternates";
152
- font-weight: 200;
153
- font-style: italic;
154
- src: url("../webfonts/MontserratAlternates-ExtraLightItalic.woff2") format("woff2"), url("../webfonts/MontserratAlternates-ExtraLightItalic.woff") format("woff");
155
- }
156
- /** Montserrat Alternates Light **/
157
- @font-face {
158
- font-family: "Montserrat Alternates";
159
- font-weight: 300;
160
- font-style: normal;
161
- src: url("../webfonts/MontserratAlternates-Light.woff2") format("woff2"), url("../webfonts/MontserratAlternates-Light.woff") format("woff");
162
- }
163
- /** Montserrat Alternates Light-Italic **/
164
- @font-face {
165
- font-family: "Montserrat Alternates";
166
- font-weight: 300;
167
- font-style: italic;
168
- src: url("../webfonts/MontserratAlternates-LightItalic.woff2") format("woff2"), url("../webfonts/MontserratAlternates-LightItalic.woff") format("woff");
169
- }
170
- /** Montserrat Alternates Regular **/
171
- @font-face {
172
- font-family: "Montserrat Alternates";
173
- font-weight: 400;
174
- font-style: normal;
175
- src: url("../webfonts/MontserratAlternates-Regular.woff2") format("woff2"), url("../webfonts/MontserratAlternates-Regular.woff") format("woff");
176
- }
177
- /** Montserrat Alternates Regular-Italic **/
178
- @font-face {
179
- font-family: "Montserrat Alternates";
180
- font-weight: 400;
181
- font-style: italic;
182
- src: url("../webfonts/MontserratAlternates-Italic.woff2") format("woff2"), url("../webfonts/MontserratAlternates-Italic.woff") format("woff");
183
- }
184
- /** Montserrat Alternates Medium **/
185
- @font-face {
186
- font-family: "Montserrat Alternates";
187
- font-weight: 500;
188
- font-style: normal;
189
- src: url("../webfonts/MontserratAlternates-Medium.woff2") format("woff2"), url("../webfonts/MontserratAlternates-Medium.woff") format("woff");
190
- }
191
- /** Montserrat Alternates Medium-Italic **/
192
- @font-face {
193
- font-family: "Montserrat Alternates";
194
- font-weight: 500;
195
- font-style: italic;
196
- src: url("../webfonts/MontserratAlternates-MediumItalic.woff2") format("woff2"), url("../webfonts/MontserratAlternates-MediumItalic.woff") format("woff");
197
- }
198
- /** Montserrat Alternates SemiBold **/
199
- @font-face {
200
- font-family: "Montserrat Alternates";
201
- font-weight: 600;
202
- font-style: normal;
203
- src: url("../webfonts/MontserratAlternates-SemiBold.woff2") format("woff2"), url("../webfonts/MontserratAlternates-SemiBold.woff") format("woff");
204
- }
205
- /** Montserrat Alternates SemiBold-Italic **/
206
- @font-face {
207
- font-family: "Montserrat Alternates";
208
- font-weight: 600;
209
- font-style: italic;
210
- src: url("../webfonts/MontserratAlternates-SemiBoldItalic.woff2") format("woff2"), url("../webfonts/MontserratAlternates-SemiBoldItalic.woff") format("woff");
211
- }
212
- /** Montserrat Alternates Bold **/
213
- @font-face {
214
- font-family: "Montserrat Alternates";
215
- font-weight: 700;
216
- font-style: normal;
217
- src: url("../webfonts/MontserratAlternates-Bold.woff2") format("woff2"), url("../webfonts/MontserratAlternates-Bold.woff") format("woff");
218
- }
219
- /** Montserrat Alternates Bold-Italic **/
220
- @font-face {
221
- font-family: "Montserrat Alternates";
222
- font-weight: 700;
223
- font-style: italic;
224
- src: url("../webfonts/MontserratAlternates-BoldItalic.woff2") format("woff2"), url("../webfonts/MontserratAlternates-BoldItalic.woff") format("woff");
225
- }
226
- /** Montserrat Alternates ExtraBold **/
227
- @font-face {
228
- font-family: "Montserrat Alternates";
229
- font-weight: 800;
230
- font-style: normal;
231
- src: url("../webfonts/MontserratAlternates-ExtraBold.woff2") format("woff2"), url("../webfonts/MontserratAlternates-ExtraBold.woff") format("woff");
232
- }
233
- /** Montserrat Alternates ExtraBold-Italic **/
234
- @font-face {
235
- font-family: "Montserrat Alternates";
236
- font-weight: 800;
237
- font-style: italic;
238
- src: url("../webfonts/MontserratAlternates-ExtraBoldItalic.woff2") format("woff2"), url("../webfonts/MontserratAlternates-ExtraBoldItalic.woff") format("woff");
239
- }
240
- /** Montserrat Alternates Black **/
241
- @font-face {
242
- font-family: "Montserrat Alternates";
243
- font-weight: 900;
244
- font-style: normal;
245
- src: url("../webfonts/MontserratAlternates-Black.woff2") format("woff2"), url("../webfonts/MontserratAlternates-Black.woff") format("woff");
246
- }
247
- /** Montserrat Alternates Black-Italic **/
248
- @font-face {
249
- font-family: "Montserrat";
250
- font-weight: 900;
251
- font-style: italic;
252
- src: url("../webfonts/MontserratAlternates-BlackItalic.woff2") format("woff2"), url("../webfonts/MontserratAlternates-BlackItalic.woff") format("woff");
253
- }
@@ -1,43 +0,0 @@
1
- @font-face {
2
- font-family: 'overpass-mono';
3
- src: url('../webfonts/OverpassMono-Light.eot');
4
- src: url('../webfonts/OverpassMono-Light.eot?#iefix') format('embedded-opentype'),
5
- url('../webfonts/OverpassMono-Light.woff2') format('woff2'),
6
- url('../webfonts/OverpassMono-Light.woff') format('woff'),
7
- url('../webfonts/OverpassMono-Light.ttf') format('truetype');
8
- font-weight: 300;
9
- font-style: normal;
10
- }
11
-
12
- @font-face {
13
- font-family: 'overpass-mono';
14
- src: url('../webfonts/OverpassMono-Regular.eot');
15
- src: url('../webfonts/OverpassMono-Regular.eot?#iefix') format('embedded-opentype'),
16
- url('../webfonts/OverpassMono-Regular.woff2') format('woff2'),
17
- url('../webfonts/OverpassMono-Regular.woff') format('woff'),
18
- url('../webfonts/OverpassMono-Regular.ttf') format('truetype');
19
- font-weight: 400;
20
- font-style: normal;
21
- }
22
-
23
- @font-face {
24
- font-family: 'overpass-mono';
25
- src: url('../webfonts/OverpassMono-SemiBuild.eot');
26
- src: url('../webfonts/OverpassMono-SemiBuild.eot?#iefix') format('embedded-opentype'),
27
- url('../webfonts/OverpassMono-SemiBuild.woff2') format('woff2'),
28
- url('../webfonts/OverpassMono-SemiBuild.woff') format('woff'),
29
- url('../webfonts/OverpassMono-SemiBuild.ttf') format('truetype');
30
- font-weight: 500;
31
- font-style: normal;
32
- }
33
-
34
- @font-face {
35
- font-family: 'overpass-mono';
36
- src: url('../webfonts/OverpassMono-Bold.eot');
37
- src: url('../webfonts/OverpassMono-Bold.eot?#iefix') format('embedded-opentype'),
38
- url('../webfonts/OverpassMono-Bold.woff2') format('woff2'),
39
- url('../webfonts/OverpassMono-Bold.woff') format('woff'),
40
- url('../webfonts/OverpassMono-Bold.ttf') format('truetype');
41
- font-weight: 600;
42
- font-style: normal;
43
- }