diff --git a/public/assets/css/base.css b/public/assets/css/base.css index d818fb3308..e065c807d8 100644 --- a/public/assets/css/base.css +++ b/public/assets/css/base.css @@ -1,18 +1,25 @@ -@import url("../fonts/inter/inter.css"); +@import url("../fonts/chivo/chivo.css"); -html * { +html { scroll-margin-top: 4rem; } -*:focus:not(:active) { - border: 4px solid var(--bg3); - border-radius: var(--unit-size); - transition: border ease-in-out; +*:hover, +*:active { + -webkit-box-shadow: unset; + -moz-box-shadow: unset; + box-shadow: unset; +} + +*:focus { + -webkit-box-shadow:inset 0 0 0 3px var(--bg3); + -moz-box-shadow: inset 0 0 0 3px var(--bg3); + box-shadow: inset 0 0 0 3px var(--bg3); } :root { - /* FONTS */ - --main-font: 'Inter var', sans-serif; + /* FONTS */ + --main-font: 'Chivo', sans-serif; /* UNITS * unit size - every element should be a multiplier of this @@ -26,7 +33,6 @@ html * { --small-size: 1rem; - /* transitions and animations */ --cubic-transition: all 200ms cubic-bezier(0, 0.55, 0.45, 1); --fade-in: fadeIn 200ms cubic-bezier(0, 0.55, 0.45, 1); @@ -52,6 +58,7 @@ html * { background-color: var(--bg1); background-image: url("../images/bg.png"); } + body:after { content:""; position: fixed; @@ -138,6 +145,16 @@ summary:hover .icon-details-open { transition: var(--cubic-transition); } +/* CHECKERBOARD BACKGROUND FOR TRANSPARENT IMAGES */ +.note img { + background: + repeating-conic-gradient( + #ffffff66 0deg 90deg, + #ffffff33 0deg 180deg) + 0 0/40px 40px round; +} + + /* BACKGROUND IMG GRADIENT */ .bg { background-position: center; @@ -193,8 +210,8 @@ summary:hover .icon-details-open { .container { position: relative; top: 3rem; - margin-left: 20%; - margin-right: 20%; + margin-left: 25%; + margin-right: 25%; padding: var(--unit-size) var(--unit-size) 0 var(--unit-size); } @@ -288,6 +305,7 @@ summary:hover .icon-details-open { display: flex; justify-content: space-between; align-items: center; + max-height: 3rem; border: solid 2px var(--bg2); border-bottom: unset; @@ -308,26 +326,30 @@ summary:hover .icon-details-open { .note-author .avatar { width: auto; - height: var(--medium-size); + height: var(--main-size); border-radius: var(--unit-size); - margin-right: 4px; + margin-right: 5px; } /* TODO: icons */ .note-actions { display: flex; vertical-align: middle; + height: 100%; + max-height: 100%; } .button-container { all: unset; border: none !important; + + background-repeat: no-repeat !important; + width: 1em !important; height: 1em !important; - background-size: cover !important; + margin-left: 5px; text-indent: -9999em; - text-transform: uppercase; } .button-container:hover, @@ -371,11 +393,6 @@ summary:hover .icon-details-open { padding: var(--small-size); } -.note-content p { - padding-left: var(--small-size); - padding-right: var(--small-size); -} - .note-attachments { display: flex; max-width: 100%; @@ -441,15 +458,55 @@ summary:hover .icon-details-open { } .section-form { + display: flex; + flex-direction: column; padding: var(--unit-size); } -.form-group { - margin-bottom: var(--unit-size); + +.section-form fieldset .form-group:last-of-type { + margin-bottom: unset; } +.section-form-legend { + margin-top: unset; + margin-bottom: 10px; + + font-weight: bold; + font-size: var(--main-size); +} + +.section-form-label { + margin-bottom: 5px; +} + +.form-group { + display: flex; + flex-direction: column; + margin-bottom: 10px; +} +.form-group label { + margin-bottom: 5px; +} +.help-block { + margin-top: 5px; + margin-bottom: 10px; +} .help-text { font-style: italic; font-size: var(--small-size); + margin-top: 5px; + margin-bottom: 10px; +} +.help-block > .list-unstyled, +.alert, +.alert-danger { + border: solid 2px #FF6347; + background-color: #FF634733; + border-radius: var(--unit-size); + + padding: 2px 6px; + margin-top: 5px; + margin-bottom: 10px; } .section-form-options { @@ -467,9 +524,6 @@ summary:hover .icon-details-open { height: calc(6 * var(--main-size)); border: 2px solid transparent; - margin-top: var(--unit-size); - margin-bottom: var(--unit-size); - padding: var(--unit-size); resize: vertical; } @@ -483,10 +537,9 @@ button, textarea, input { font-size: inherit !important; - display: block; position: relative; color: var(--white); - padding: 2px 6px; + padding: 4px 8px; border: 2px solid var(--bg2) !important; border-radius: var(--unit-size) !important; background-color: var(--translucent); @@ -517,7 +570,8 @@ input[type=radio] { input[type=checkbox] { background-color: var(--bg2) !important; background-size: cover; - margin-left: 5px; + margin-right: 2px; + vertical-align: top; -webkit-mask-image: url("../icons/check-off.svg") !important; -o-mask-image: url("../icons/check-off.svg") !important; @@ -539,15 +593,16 @@ textarea:focus, button:hover, button:focus, input:hover, -input:focus { - border: solid 2px var(--bg3) !important; - color: var(--white) !important; -} +input:focus, select:hover, select:focus { - border-color: var(--bg3) !important; + color: var(--white) !important; + -webkit-box-shadow: inset 0px 0px 0px 2px var(--bg3) !important; + -moz-box-shadow: inset 0px 0px 0px 2px var(--bg3) !important; + box-shadow: inset 0px 0px 0px 2px var(--bg3) !important; } + input[type=checkbox]:hover, input[type=checkbox]:focus { background-color: var(--bg3) !important; diff --git a/public/assets/css/reset.css b/public/assets/css/reset.css index b8a43aca5c..486bd16f55 100644 --- a/public/assets/css/reset.css +++ b/public/assets/css/reset.css @@ -9,19 +9,11 @@ ul, ol { list-style: none } -/* avoid browser default inconsistent heading font-sizes */ -/* and pre/code too */ -h1, h2, h3, h4, h5, h6, pre, code { - font-size: 1rem; -} - /* remove the inconsistent (among browsers) default ul,ol padding or margin */ /* the default spacing on headings does not match nor align with normal interline spacing at all, so let's get rid of it. */ /* zero out the spacing around pre, form, body, html, p, blockquote as well */ -/* form elements are oddly inconsistent, and not quite CSS emulatable. */ -/* nonetheless strip their margin and padding as well */ -ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, body, html, p, blockquote, fieldset, input, textarea { +pre, form, body, html, blockquote, fieldset, input, textarea { margin: 0; padding: 0; border: none; @@ -47,6 +39,10 @@ address { } /* details element arrow */ +details summary > * { + margin: unset; + padding: unset; +} details > summary { list-style: none; } @@ -101,7 +97,18 @@ p { font-family: var(--main-font); font-size: var(--small-size); font-weight: 400; - margin-bottom: var(--small-size); + margin: unset; +} +p:first-line { + padding-left: var(--small-size); +} +p:first-line { + margin-top: 0; + margin-bottom: 10px; +} +p:not(:first-line) { + margin-top: 10px; + margin-bottom: 10px; } textarea { diff --git a/public/assets/css/settings/settings.css b/public/assets/css/settings/settings.css index f644f92401..c5d79d0957 100644 --- a/public/assets/css/settings/settings.css +++ b/public/assets/css/settings/settings.css @@ -8,6 +8,7 @@ } .main-nav h1 { + margin-top: var(--unit-size); margin-bottom: var(--unit-size); } diff --git a/public/assets/fonts/chivo/Chivo-Bold.woff b/public/assets/fonts/chivo/Chivo-Bold.woff new file mode 100644 index 0000000000..6522725740 Binary files /dev/null and b/public/assets/fonts/chivo/Chivo-Bold.woff differ diff --git a/public/assets/fonts/chivo/Chivo-BoldItalic.woff b/public/assets/fonts/chivo/Chivo-BoldItalic.woff new file mode 100644 index 0000000000..c2b837488a Binary files /dev/null and b/public/assets/fonts/chivo/Chivo-BoldItalic.woff differ diff --git a/public/assets/fonts/chivo/Chivo-Italic.woff b/public/assets/fonts/chivo/Chivo-Italic.woff new file mode 100644 index 0000000000..f65ebcbab2 Binary files /dev/null and b/public/assets/fonts/chivo/Chivo-Italic.woff differ diff --git a/public/assets/fonts/chivo/Chivo-Regular.woff b/public/assets/fonts/chivo/Chivo-Regular.woff new file mode 100644 index 0000000000..dffd33f8ec Binary files /dev/null and b/public/assets/fonts/chivo/Chivo-Regular.woff differ diff --git a/public/assets/fonts/inter/LICENSE.txt b/public/assets/fonts/chivo/OFL.txt similarity index 95% rename from public/assets/fonts/inter/LICENSE.txt rename to public/assets/fonts/chivo/OFL.txt index ff80f8c615..a2b11824ac 100644 --- a/public/assets/fonts/inter/LICENSE.txt +++ b/public/assets/fonts/chivo/OFL.txt @@ -1,94 +1,93 @@ -Copyright (c) 2016-2020 The Inter Project Authors. -"Inter" is trademark of Rasmus Andersson. -https://github.com/rsms/inter - -This Font Software is licensed under the SIL Open Font License, Version 1.1. -This license is copied below, and is also available with a FAQ at: -http://scripts.sil.org/OFL - ------------------------------------------------------------ -SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ------------------------------------------------------------ - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide a free and -open framework in which fonts may be shared and improved in partnership -with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply -to any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software components as -distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, deleting, -or substituting -- in part or in whole -- any of the components of the -Original Version, by changing formats or by porting the Font Software to a -new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION AND CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the corresponding -Copyright Holder. This restriction only applies to the primary font name as -presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created -using the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. +Copyright 2016 The Chivo Project Authors (omnibus.type@gmail.com) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/public/assets/fonts/chivo/chivo.css b/public/assets/fonts/chivo/chivo.css new file mode 100644 index 0000000000..7f3f7c4f07 --- /dev/null +++ b/public/assets/fonts/chivo/chivo.css @@ -0,0 +1,35 @@ +@font-face { + font-family: 'Chivo'; + src: local('Chivo Bold Italic'), local('Chivo-BoldItalic'), + url("Chivo-BoldItalic.woff") format('woff'); + font-weight: bold; + font-style: italic; + font-display: swap; +} + +@font-face { + font-family: 'Chivo'; + src: local('Chivo Bold'), local('Chivo-Bold'), + url("Chivo-Bold.woff") format('woff'); + font-weight: bold; + font-style: normal; + font-display: swap; +} + +@font-face { + font-family: 'Chivo'; + src: local('Chivo Italic'), local('Chivo-Italic'), + url("Chivo-Italic.woff") format('woff'); + font-weight: normal; + font-style: italic; + font-display: swap; +} + +@font-face { + font-family: 'Chivo'; + src: local('Chivo Regular'), local('Chivo-Regular'), + url("Chivo-Regular.woff") format('woff'); + font-weight: normal; + font-style: normal; + font-display: swap; +} diff --git a/public/assets/fonts/inter/Inter-Black.woff b/public/assets/fonts/inter/Inter-Black.woff deleted file mode 100644 index a18593a096..0000000000 Binary files a/public/assets/fonts/inter/Inter-Black.woff and /dev/null differ diff --git a/public/assets/fonts/inter/Inter-Black.woff2 b/public/assets/fonts/inter/Inter-Black.woff2 deleted file mode 100644 index 68f64c9ed9..0000000000 Binary files a/public/assets/fonts/inter/Inter-Black.woff2 and /dev/null differ diff --git a/public/assets/fonts/inter/Inter-BlackItalic.woff b/public/assets/fonts/inter/Inter-BlackItalic.woff deleted file mode 100644 index b6b01943d9..0000000000 Binary files a/public/assets/fonts/inter/Inter-BlackItalic.woff and /dev/null differ diff --git a/public/assets/fonts/inter/Inter-BlackItalic.woff2 b/public/assets/fonts/inter/Inter-BlackItalic.woff2 deleted file mode 100644 index 1c9c7ca8b0..0000000000 Binary files a/public/assets/fonts/inter/Inter-BlackItalic.woff2 and /dev/null differ diff --git a/public/assets/fonts/inter/Inter-Bold.woff2 b/public/assets/fonts/inter/Inter-Bold.woff2 deleted file mode 100644 index 2846f29cc8..0000000000 Binary files a/public/assets/fonts/inter/Inter-Bold.woff2 and /dev/null differ diff --git a/public/assets/fonts/inter/Inter-BoldItalic.woff2 b/public/assets/fonts/inter/Inter-BoldItalic.woff2 deleted file mode 100644 index 0b1fe8e125..0000000000 Binary files a/public/assets/fonts/inter/Inter-BoldItalic.woff2 and /dev/null differ diff --git a/public/assets/fonts/inter/Inter-ExtraBold.woff2 b/public/assets/fonts/inter/Inter-ExtraBold.woff2 deleted file mode 100644 index c24c2bdc2f..0000000000 Binary files a/public/assets/fonts/inter/Inter-ExtraBold.woff2 and /dev/null differ diff --git a/public/assets/fonts/inter/Inter-ExtraBoldItalic.woff2 b/public/assets/fonts/inter/Inter-ExtraBoldItalic.woff2 deleted file mode 100644 index 4a81dc7982..0000000000 Binary files a/public/assets/fonts/inter/Inter-ExtraBoldItalic.woff2 and /dev/null differ diff --git a/public/assets/fonts/inter/Inter-ExtraLight.woff2 b/public/assets/fonts/inter/Inter-ExtraLight.woff2 deleted file mode 100644 index f2ea706faf..0000000000 Binary files a/public/assets/fonts/inter/Inter-ExtraLight.woff2 and /dev/null differ diff --git a/public/assets/fonts/inter/Inter-ExtraLightItalic.woff2 b/public/assets/fonts/inter/Inter-ExtraLightItalic.woff2 deleted file mode 100644 index 9af717ba91..0000000000 Binary files a/public/assets/fonts/inter/Inter-ExtraLightItalic.woff2 and /dev/null differ diff --git a/public/assets/fonts/inter/Inter-Italic.woff2 b/public/assets/fonts/inter/Inter-Italic.woff2 deleted file mode 100644 index a619fc5486..0000000000 Binary files a/public/assets/fonts/inter/Inter-Italic.woff2 and /dev/null differ diff --git a/public/assets/fonts/inter/Inter-Light.woff2 b/public/assets/fonts/inter/Inter-Light.woff2 deleted file mode 100644 index bc4be6658b..0000000000 Binary files a/public/assets/fonts/inter/Inter-Light.woff2 and /dev/null differ diff --git a/public/assets/fonts/inter/Inter-LightItalic.woff2 b/public/assets/fonts/inter/Inter-LightItalic.woff2 deleted file mode 100644 index 842b2dfcb7..0000000000 Binary files a/public/assets/fonts/inter/Inter-LightItalic.woff2 and /dev/null differ diff --git a/public/assets/fonts/inter/Inter-Medium.woff2 b/public/assets/fonts/inter/Inter-Medium.woff2 deleted file mode 100644 index f92498a2ec..0000000000 Binary files a/public/assets/fonts/inter/Inter-Medium.woff2 and /dev/null differ diff --git a/public/assets/fonts/inter/Inter-MediumItalic.woff2 b/public/assets/fonts/inter/Inter-MediumItalic.woff2 deleted file mode 100644 index 0e3019f4ae..0000000000 Binary files a/public/assets/fonts/inter/Inter-MediumItalic.woff2 and /dev/null differ diff --git a/public/assets/fonts/inter/Inter-Regular.woff2 b/public/assets/fonts/inter/Inter-Regular.woff2 deleted file mode 100644 index 6c2b6893d5..0000000000 Binary files a/public/assets/fonts/inter/Inter-Regular.woff2 and /dev/null differ diff --git a/public/assets/fonts/inter/Inter-SemiBold.woff2 b/public/assets/fonts/inter/Inter-SemiBold.woff2 deleted file mode 100644 index 611e90c958..0000000000 Binary files a/public/assets/fonts/inter/Inter-SemiBold.woff2 and /dev/null differ diff --git a/public/assets/fonts/inter/Inter-SemiBoldItalic.woff2 b/public/assets/fonts/inter/Inter-SemiBoldItalic.woff2 deleted file mode 100644 index 545685bd2c..0000000000 Binary files a/public/assets/fonts/inter/Inter-SemiBoldItalic.woff2 and /dev/null differ diff --git a/public/assets/fonts/inter/Inter-Thin.woff2 b/public/assets/fonts/inter/Inter-Thin.woff2 deleted file mode 100644 index abbc3a5c96..0000000000 Binary files a/public/assets/fonts/inter/Inter-Thin.woff2 and /dev/null differ diff --git a/public/assets/fonts/inter/Inter-ThinItalic.woff2 b/public/assets/fonts/inter/Inter-ThinItalic.woff2 deleted file mode 100644 index ab0b2002a3..0000000000 Binary files a/public/assets/fonts/inter/Inter-ThinItalic.woff2 and /dev/null differ diff --git a/public/assets/fonts/inter/Inter-italic.var.woff2 b/public/assets/fonts/inter/Inter-italic.var.woff2 deleted file mode 100644 index b826d5af84..0000000000 Binary files a/public/assets/fonts/inter/Inter-italic.var.woff2 and /dev/null differ diff --git a/public/assets/fonts/inter/Inter-roman.var.woff2 b/public/assets/fonts/inter/Inter-roman.var.woff2 deleted file mode 100644 index 6a256a068f..0000000000 Binary files a/public/assets/fonts/inter/Inter-roman.var.woff2 and /dev/null differ diff --git a/public/assets/fonts/inter/Inter.var.woff2 b/public/assets/fonts/inter/Inter.var.woff2 deleted file mode 100644 index 365eedc50c..0000000000 Binary files a/public/assets/fonts/inter/Inter.var.woff2 and /dev/null differ diff --git a/public/assets/fonts/inter/inter.css b/public/assets/fonts/inter/inter.css deleted file mode 100644 index ea0912a675..0000000000 --- a/public/assets/fonts/inter/inter.css +++ /dev/null @@ -1,17 +0,0 @@ -@font-face { - font-family: 'Inter var'; - font-weight: 100 900; - font-display: swap; - font-style: normal; - font-named-instance: 'Regular'; - src: url("Inter-roman.var.woff2?v=3.19") format("woff2"); -} - -@font-face { - font-family: 'Inter var'; - font-weight: 100 900; - font-display: swap; - font-style: italic; - font-named-instance: 'Italic'; - src: url("Inter-italic.var.woff2?v=3.19") format("woff2"); -} \ No newline at end of file diff --git a/public/assets/icons/heart.svg b/public/assets/icons/heart.svg index e1908f6667..87b0ed7a73 100644 --- a/public/assets/icons/heart.svg +++ b/public/assets/icons/heart.svg @@ -1,3 +1,3 @@ - + diff --git a/public/assets/icons/repeat.svg b/public/assets/icons/repeat.svg index 76dd548ccd..34640d44e3 100644 --- a/public/assets/icons/repeat.svg +++ b/public/assets/icons/repeat.svg @@ -1,4 +1,4 @@ - + Recycle this note. diff --git a/public/assets/icons/reply.svg b/public/assets/icons/reply.svg index ea006d7e6b..dca475cd19 100644 --- a/public/assets/icons/reply.svg +++ b/public/assets/icons/reply.svg @@ -1,4 +1,4 @@ - + Reply!