jekyll-theme-dusk 0.4.1 → 0.5.2

Sign up to get free protection for your applications and to get access to all the features.
data/_sass/base.scss CHANGED
@@ -1,112 +1,213 @@
1
- @use "sass:math";
2
1
  @import "css-reset";
3
- @import "fonts";
4
- @import "include";
5
- @import "layout";
2
+ @import "text";
6
3
  @import "device-support";
4
+ @import "variables.scss";
7
5
 
8
- /* Colours */
9
- $primary-colour: #c7bc87; // Light Gold
10
- $background-colour: #171717; // Dark Gray
11
-
12
- /* Templates */
13
- @mixin display {
14
- font-family: 'Chivo Mono', monospace;
15
- color: $primary-colour;
6
+ h1, h2, h3, h4, h5, h6 {
7
+ @include display;
16
8
  }
17
9
 
18
- @mixin content {
19
- font-family: 'Titillium Web', sans-serif;
20
- color: white;
10
+ a, a:hover, a:active, a:visited {
11
+ color: white;
12
+ text-decoration: none;
21
13
  }
22
14
 
15
+ /* Base Formatting */
23
16
  html {
24
- @include content;
25
- transition: 0.5s;
26
- font-size: min(max(1rem, 2vw), 18px);
27
- }
28
-
29
- h1 {
30
- font-size: min(max(3rem, 9vw), 50px);
31
- font-weight: 700;
17
+ @include content;
18
+ background-color: $background-colour;
19
+ transition: 0.5s;
32
20
  }
33
21
 
34
- h2 {
35
- font-size: min(max(2.7rem, 8vw), 30px);
36
- font-weight: 400;
37
- }
22
+ header {
23
+ display: block;
24
+ height: 30vh;
25
+ flex-shrink: 0; /* this is so that the flex layout doesnt shrink the header when the window isn't tall enough to fit everything */
38
26
 
39
- h3 {
40
- font-size: min(max(2.4rem, 7vw), 25px);
41
- font-weight: 200;
42
- }
27
+ /* parallax effect in background */
28
+ background-image: url("/assets/images/dusk-gray.jpg");
29
+ background-repeat: no-repeat;
30
+ background-attachment: fixed;
31
+ background-position: center;
32
+ background-size: cover;
43
33
 
44
- h4 {
45
- font-size: min(max(2.1rem, 6vw), 20px);
46
- font-weight: 200;
34
+ /* center content in header */
35
+ position: relative;
47
36
  }
48
37
 
49
- h5 {
50
- font-size: min(max(1.5rem, 4vw), 18px);
51
- font-weight: 200;
52
- font-style: italic;
38
+ #header--home {
39
+ height: 50vh;
40
+ text-align: center;
53
41
  }
54
42
 
55
- h6 {
56
- font-size: min(max(0.9rem, 3vw), 16px);
57
- font-weight: 200;
58
- font-style: italic;
43
+ #header__content {
44
+ display: block;
45
+ width: 80vw;
46
+ /* center content in header */
47
+ margin: 0;
48
+ position: absolute;
49
+ top: 50%;
50
+ left: 50%;
51
+ transform: translate(-50%, -50%);
59
52
  }
60
53
 
61
- h1, h2, h3, h4, h5, h6 {
62
- @include display;
54
+ body {
55
+ display: flex;
56
+ flex-direction: column;
57
+ align-items: stretch;
58
+ justify-content: space-between;
63
59
  }
64
60
 
65
- a, a:hover, a:active, a:visited {
66
- color: white;
67
- text-decoration: none;
61
+ main {
62
+ width: 80vw;
63
+ margin: 30px auto 0 auto;
68
64
  }
69
65
 
70
- /* Base Formatting */
71
- html {
72
- @include content;
73
- background-color: $background-colour;
66
+ article {
67
+ margin: 20px 0;
74
68
  }
75
69
 
76
- main {
77
- width: 80vw;
78
- margin: 30px auto 0 auto;
79
- }
80
70
  hr {
81
- margin: 20px;
82
- }
83
-
84
- article {
85
- margin: 20px 0;
71
+ margin: 20px;
86
72
  }
87
73
 
74
+ /* Custom Classes */
88
75
  .image-gallery {
89
- ul {
90
- display: flex;
91
- flex-wrap: wrap;
92
- list-style: none;
93
- padding-left: 0;
94
-
95
- &:after {
96
- content:'';
97
- display:block;
98
- flex-grow: 10;
99
- }
100
- }
101
-
102
- li {
103
- flex-grow: 1;
104
- }
105
-
106
- img {
107
- max-height: 100%;
108
- min-width: 100%;
109
- object-fit: cover;
110
- vertical-align: bottom;
111
- }
76
+ margin: 10px 0;
77
+
78
+ ul {
79
+ display: flex;
80
+ flex-wrap: wrap;
81
+ list-style: none;
82
+ padding-left: 0;
83
+ margin: 0.75vmin;
84
+
85
+ &:after {
86
+ content: "";
87
+ display: block;
88
+ flex-grow: 10;
89
+ }
90
+ }
91
+
92
+ li {
93
+ border: 1px solid rgba($primary-colour, 0.2);
94
+ border-radius: 0.5vmin;
95
+ padding: 3px;
96
+ flex-grow: 1;
97
+ margin: 0.75vmin;
98
+ }
99
+
100
+ img {
101
+ max-height: 100%;
102
+ min-width: 100%;
103
+ object-fit: cover;
104
+ vertical-align: bottom;
105
+ border-radius: 0.5vmin;
106
+ }
107
+ }
108
+
109
+ .b2b-container {
110
+ display: inline-flex;
111
+ justify-content: center;
112
+ width: 120px;
113
+ margin: 0;
114
+ padding: 2px;
115
+ background-color: rgba(0, 0, 0, 0.6);
116
+ border: 1px solid rgba(255, 255, 255, 0.2);
117
+ border-radius: 4px;
118
+ transition: 0.5s;
119
+ }
120
+
121
+ .b2b-container:hover {
122
+ background: rgba(199, 188, 135, 0.2) url(/assets/images/noise.png);
123
+ }
124
+
125
+ /* navigation.html */
126
+ nav {
127
+ height: 100%;
128
+ width: 0; /* changed with JavaScript */
129
+ position: fixed;
130
+ z-index: 2;
131
+ top: 0;
132
+ right: 0;
133
+ overflow-x: hidden;
134
+ transition: 0.5s;
135
+
136
+ text-align: center;
137
+ background-color: rgba(0, 0, 0, 0.6);
138
+ }
139
+
140
+ .nav__links {
141
+ display: flex;
142
+ justify-content: space-between;
143
+
144
+ padding: 11px;
145
+ transition: 0.5s;
146
+ height: 45px;
147
+ width: 100%;
148
+ }
149
+
150
+ #nav__closebtn {
151
+ transition: 0.5s;
152
+ padding: 11px;
153
+ position: absolute;
154
+ top: 0;
155
+ left: 0;
156
+ width: 45px;
157
+ }
158
+
159
+ .nav__links:hover, #nav__closebtn:hover {
160
+ background: rgba(199, 188, 135, 0.2) url(/assets/images/noise.png);
161
+ }
162
+
163
+ .nav__links__icon {
164
+ width: 24px;
165
+ display: inline-block;
166
+ }
167
+
168
+ #nav__openbtn {
169
+ background-color: rgba(0, 0, 0, 0.6);
170
+ position: fixed;
171
+ top: 7px;
172
+ right: 7px;
173
+ z-index: 1;
174
+ display: block;
175
+
176
+ transition: 0.5s;
177
+ cursor: pointer;
178
+ border: 1px solid rgba(255, 255, 255, 0.2);
179
+ border-radius: 4px;
180
+ padding: 3px 10px;
181
+ }
182
+
183
+ #nav__openbtn:hover {
184
+ background: rgba(199, 188, 135, 0.2) url(/assets/images/noise.png);
185
+ }
186
+
187
+ /* footer.html */
188
+ footer {
189
+ display: flex;
190
+ justify-content: space-between;
191
+ background: linear-gradient(100deg, #202020, #323232);
192
+ padding: 3% 10%;
193
+ margin-top: 5%;
194
+ }
195
+
196
+ #footer__links {
197
+ display: inline-flex;
198
+ flex-direction: column;
199
+ a:hover {
200
+ transition: 0.5s;
201
+ color: $primary_colour;
202
+ }
203
+ }
204
+
205
+ #footer__watermark {
206
+ display: flex;
207
+ flex-direction: column;
208
+ justify-content: flex-end;
209
+ text-align: right;
210
+ font-size: 85%;
211
+ width: 50%;
212
+ opacity: 50%;
112
213
  }
data/_sass/css-reset.scss CHANGED
@@ -1,38 +1,38 @@
1
1
  /* CSS Reset - https://www.joshwcomeau.com/css/custom-css-reset/ */
2
2
  /* 1. Use a more-intuitive box-sizing model. */
3
3
  *, *::before, *::after {
4
- box-sizing: border-box;
4
+ box-sizing: border-box;
5
5
  }
6
6
  /* 2. Remove default margin */
7
7
  * {
8
- margin: 0;
8
+ margin: 0;
9
9
  }
10
10
  /* 3. Allow percentage-based heights in the application */
11
11
  html, body {
12
- height: 100%;
12
+ height: 100%;
13
13
  }
14
14
  /* Typographic tweaks!
15
15
  4. Add accessible line-height
16
16
  5. Improve text rendering
17
17
  */
18
18
  body {
19
- line-height: 1.5;
20
- -webkit-font-smoothing: antialiased;
19
+ line-height: 1.5;
20
+ -webkit-font-smoothing: antialiased;
21
21
  }
22
22
  /* 6. Improve media defaults */
23
23
  img, picture, video, canvas, svg {
24
- display: block;
25
- max-width: 100%;
24
+ display: block;
25
+ max-width: 100%;
26
26
  }
27
27
  /* 7. Remove built-in form typography styles */
28
28
  input, button, textarea, select {
29
- font: inherit;
29
+ font: inherit;
30
30
  }
31
31
  /* 8. Avoid text overflows */
32
32
  p, h1, h2, h3, h4, h5, h6 {
33
- overflow-wrap: break-word;
33
+ overflow-wrap: break-word;
34
34
  }
35
35
  /* 9. Create a root stacking context */
36
36
  #root, #__next {
37
- isolation: isolate;
37
+ isolation: isolate;
38
38
  }
@@ -1,32 +1,47 @@
1
1
  /* Extra small devices (phones, 600px and down) */
2
2
  @media only screen and (max-width: 600px) {
3
- .image-gallery {
4
- li {
5
- height: 15vh;
6
- }
7
- }
3
+ .image-gallery {
4
+ li {
5
+ height: 15vh;
6
+ }
7
+ }
8
+
9
+ #header__content {
10
+ width: 80vw;
11
+ }
8
12
  }
9
13
 
10
14
  /* Small devices (portrait tablets and large phones, 600px and up) */
11
15
  @media only screen and (min-width: 600px) {
12
- .image-gallery {
13
- li {
14
- height: 20vh;
15
- }
16
- }
16
+ .image-gallery {
17
+ li {
18
+ height: 20vh;
19
+ }
20
+ }
21
+
22
+ #header__content {
23
+ width: 80vw;
24
+ }
17
25
  }
18
26
 
19
27
  /* Medium devices (landscape tablets, 768px and up) */
20
28
  @media only screen and (min-width: 768px) {
21
- .image-gallery {
22
- li {
23
- height: 30vh;
24
- }
25
- }
29
+ .image-gallery {
30
+ li {
31
+ height: 30vh;
32
+ }
33
+ }
34
+
35
+ #header__content {
36
+ width: 80vw;
37
+ }
26
38
  }
27
39
 
28
40
  /* Large devices (laptops/desktops, 992px and up) */
29
41
  @media only screen and (min-width: 992px) {
42
+ #header__content {
43
+ width: 50vw;
44
+ }
30
45
  }
31
46
 
32
47
  /* Extra large devices (large laptops and desktops, 1200px and up) */
data/_sass/text.scss ADDED
@@ -0,0 +1,63 @@
1
+ /* Fonts */
2
+ /* Display */
3
+ @import url("https://fonts.googleapis.com/css2?family=Chivo+Mono:ital,wght@0,200;0,400;0,700;1,200;1,400;1,700&display=swap");
4
+ @font-face {
5
+ font-family: "Chivo Mono";
6
+ font-style: normal;
7
+ font-display: swap;
8
+ src:
9
+ url("/assets/fonts/Chivo_Mono/ChivoMono-VariableFont_wght.woff2") format("woff2"),
10
+ url("/assets/fonts/Chivo_Mono/ChivoMono-VariableFont_wght.woff") format("woff"),
11
+ url("/assets/fonts/Chivo_Mono/ChivoMono-Italic-VariableFont_wght.woff2") format("woff2"),
12
+ url("/assets/fonts/Chivo_Mono/ChivoMono-Italic-VariableFont_wght.woff") format("woff");
13
+ }
14
+
15
+ /* Content */
16
+ @import url("https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,400;0,700;1,200;1,400;1,700&display=swap");
17
+ @font-face {
18
+ font-family: "Titillium Web";
19
+ font-style: normal;
20
+ font-display: swap;
21
+ src:
22
+ url("/assets/fonts/Titillium_Web/TitilliumWeb-VF.woff2") format("woff2"),
23
+ url("/assets/fonts/Titillium_Web/TitilliumWeb-VF.woff") format("woff"),
24
+ url("/assets/fonts/Titillium_Web/TitilliumWeb-Italic-VF.woff2") format("woff2"),
25
+ url("/assets/fonts/Titillium_Web/TitilliumWeb-Italic-VF.woff") format("woff");
26
+ }
27
+
28
+ /* Text formatting */
29
+ html {
30
+ font-size: min(max(16px, 2vw), 18px);
31
+ }
32
+
33
+ h1 {
34
+ font-size: min(max(2.5rem, 9vw), 50px);
35
+ font-weight: 700;
36
+ }
37
+
38
+ h2 {
39
+ font-size: min(max(2rem, 6vw), 25px);
40
+ font-weight: 400;
41
+ }
42
+
43
+ h3 {
44
+ font-size: min(max(1.8rem, 5vw), 22px);
45
+ font-weight: 200;
46
+ }
47
+
48
+ h4 {
49
+ font-size: min(max(1.6rem, 4vw), 19px);
50
+ font-weight: 200;
51
+ }
52
+
53
+ h5 {
54
+ font-size: min(max(1.4rem, 3vw), 17.5px);
55
+ font-weight: 200;
56
+ font-style: italic;
57
+ }
58
+
59
+ h6 {
60
+ font-size: min(max(1.1rem, 2vw), 16px);
61
+ font-weight: 200;
62
+ font-style: italic;
63
+ }
@@ -0,0 +1,14 @@
1
+ /* Colours */
2
+ $primary-colour: #c7bc87; // Light Gold
3
+ $background-colour: #171717; // Dark Gray
4
+
5
+ /* Templates */
6
+ @mixin display {
7
+ font-family: "Chivo Mono", monospace;
8
+ color: $primary-colour;
9
+ }
10
+
11
+ @mixin content {
12
+ font-family: "Titillium Web", sans-serif;
13
+ color: white;
14
+ }
@@ -1,3 +1,3 @@
1
1
  ---
2
2
  ---
3
- @import "base";
3
+ @import "base";
@@ -0,0 +1,93 @@
1
+ Copyright 2019 The Chivo Project Authors (https://github.com/Omnibus-Type/Chivo)
2
+
3
+ This Font Software is licensed under the SIL Open Font License, Version 1.1.
4
+ This license is copied below, and is also available with a FAQ at:
5
+ http://scripts.sil.org/OFL
6
+
7
+
8
+ -----------------------------------------------------------
9
+ SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
10
+ -----------------------------------------------------------
11
+
12
+ PREAMBLE
13
+ The goals of the Open Font License (OFL) are to stimulate worldwide
14
+ development of collaborative font projects, to support the font creation
15
+ efforts of academic and linguistic communities, and to provide a free and
16
+ open framework in which fonts may be shared and improved in partnership
17
+ with others.
18
+
19
+ The OFL allows the licensed fonts to be used, studied, modified and
20
+ redistributed freely as long as they are not sold by themselves. The
21
+ fonts, including any derivative works, can be bundled, embedded,
22
+ redistributed and/or sold with any software provided that any reserved
23
+ names are not used by derivative works. The fonts and derivatives,
24
+ however, cannot be released under any other type of license. The
25
+ requirement for fonts to remain under this license does not apply
26
+ to any document created using the fonts or their derivatives.
27
+
28
+ DEFINITIONS
29
+ "Font Software" refers to the set of files released by the Copyright
30
+ Holder(s) under this license and clearly marked as such. This may
31
+ include source files, build scripts and documentation.
32
+
33
+ "Reserved Font Name" refers to any names specified as such after the
34
+ copyright statement(s).
35
+
36
+ "Original Version" refers to the collection of Font Software components as
37
+ distributed by the Copyright Holder(s).
38
+
39
+ "Modified Version" refers to any derivative made by adding to, deleting,
40
+ or substituting -- in part or in whole -- any of the components of the
41
+ Original Version, by changing formats or by porting the Font Software to a
42
+ new environment.
43
+
44
+ "Author" refers to any designer, engineer, programmer, technical
45
+ writer or other person who contributed to the Font Software.
46
+
47
+ PERMISSION & CONDITIONS
48
+ Permission is hereby granted, free of charge, to any person obtaining
49
+ a copy of the Font Software, to use, study, copy, merge, embed, modify,
50
+ redistribute, and sell modified and unmodified copies of the Font
51
+ Software, subject to the following conditions:
52
+
53
+ 1) Neither the Font Software nor any of its individual components,
54
+ in Original or Modified Versions, may be sold by itself.
55
+
56
+ 2) Original or Modified Versions of the Font Software may be bundled,
57
+ redistributed and/or sold with any software, provided that each copy
58
+ contains the above copyright notice and this license. These can be
59
+ included either as stand-alone text files, human-readable headers or
60
+ in the appropriate machine-readable metadata fields within text or
61
+ binary files as long as those fields can be easily viewed by the user.
62
+
63
+ 3) No Modified Version of the Font Software may use the Reserved Font
64
+ Name(s) unless explicit written permission is granted by the corresponding
65
+ Copyright Holder. This restriction only applies to the primary font name as
66
+ presented to the users.
67
+
68
+ 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
69
+ Software shall not be used to promote, endorse or advertise any
70
+ Modified Version, except to acknowledge the contribution(s) of the
71
+ Copyright Holder(s) and the Author(s) or with their explicit written
72
+ permission.
73
+
74
+ 5) The Font Software, modified or unmodified, in part or in whole,
75
+ must be distributed entirely under this license, and must not be
76
+ distributed under any other license. The requirement for fonts to
77
+ remain under this license does not apply to any document created
78
+ using the Font Software.
79
+
80
+ TERMINATION
81
+ This license becomes null and void if any of the above conditions are
82
+ not met.
83
+
84
+ DISCLAIMER
85
+ THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
86
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
87
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
88
+ OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
89
+ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
90
+ INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
91
+ DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
92
+ FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
93
+ OTHER DEALINGS IN THE FONT SOFTWARE.
@@ -0,0 +1,93 @@
1
+ Copyright (c) 2009-2011 by Accademia di Belle Arti di Urbino and students of MA course of Visual design. Some rights reserved.
2
+
3
+ This Font Software is licensed under the SIL Open Font License, Version 1.1.
4
+ This license is copied below, and is also available with a FAQ at:
5
+ http://scripts.sil.org/OFL
6
+
7
+
8
+ -----------------------------------------------------------
9
+ SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
10
+ -----------------------------------------------------------
11
+
12
+ PREAMBLE
13
+ The goals of the Open Font License (OFL) are to stimulate worldwide
14
+ development of collaborative font projects, to support the font creation
15
+ efforts of academic and linguistic communities, and to provide a free and
16
+ open framework in which fonts may be shared and improved in partnership
17
+ with others.
18
+
19
+ The OFL allows the licensed fonts to be used, studied, modified and
20
+ redistributed freely as long as they are not sold by themselves. The
21
+ fonts, including any derivative works, can be bundled, embedded,
22
+ redistributed and/or sold with any software provided that any reserved
23
+ names are not used by derivative works. The fonts and derivatives,
24
+ however, cannot be released under any other type of license. The
25
+ requirement for fonts to remain under this license does not apply
26
+ to any document created using the fonts or their derivatives.
27
+
28
+ DEFINITIONS
29
+ "Font Software" refers to the set of files released by the Copyright
30
+ Holder(s) under this license and clearly marked as such. This may
31
+ include source files, build scripts and documentation.
32
+
33
+ "Reserved Font Name" refers to any names specified as such after the
34
+ copyright statement(s).
35
+
36
+ "Original Version" refers to the collection of Font Software components as
37
+ distributed by the Copyright Holder(s).
38
+
39
+ "Modified Version" refers to any derivative made by adding to, deleting,
40
+ or substituting -- in part or in whole -- any of the components of the
41
+ Original Version, by changing formats or by porting the Font Software to a
42
+ new environment.
43
+
44
+ "Author" refers to any designer, engineer, programmer, technical
45
+ writer or other person who contributed to the Font Software.
46
+
47
+ PERMISSION & CONDITIONS
48
+ Permission is hereby granted, free of charge, to any person obtaining
49
+ a copy of the Font Software, to use, study, copy, merge, embed, modify,
50
+ redistribute, and sell modified and unmodified copies of the Font
51
+ Software, subject to the following conditions:
52
+
53
+ 1) Neither the Font Software nor any of its individual components,
54
+ in Original or Modified Versions, may be sold by itself.
55
+
56
+ 2) Original or Modified Versions of the Font Software may be bundled,
57
+ redistributed and/or sold with any software, provided that each copy
58
+ contains the above copyright notice and this license. These can be
59
+ included either as stand-alone text files, human-readable headers or
60
+ in the appropriate machine-readable metadata fields within text or
61
+ binary files as long as those fields can be easily viewed by the user.
62
+
63
+ 3) No Modified Version of the Font Software may use the Reserved Font
64
+ Name(s) unless explicit written permission is granted by the corresponding
65
+ Copyright Holder. This restriction only applies to the primary font name as
66
+ presented to the users.
67
+
68
+ 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
69
+ Software shall not be used to promote, endorse or advertise any
70
+ Modified Version, except to acknowledge the contribution(s) of the
71
+ Copyright Holder(s) and the Author(s) or with their explicit written
72
+ permission.
73
+
74
+ 5) The Font Software, modified or unmodified, in part or in whole,
75
+ must be distributed entirely under this license, and must not be
76
+ distributed under any other license. The requirement for fonts to
77
+ remain under this license does not apply to any document created
78
+ using the Font Software.
79
+
80
+ TERMINATION
81
+ This license becomes null and void if any of the above conditions are
82
+ not met.
83
+
84
+ DISCLAIMER
85
+ THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
86
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
87
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
88
+ OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
89
+ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
90
+ INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
91
+ DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
92
+ FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
93
+ OTHER DEALINGS IN THE FONT SOFTWARE.