Initial commit
This commit is contained in:
284
users-manage/public/css/components/2_tabulator-table.css
Normal file
284
users-manage/public/css/components/2_tabulator-table.css
Normal file
@@ -0,0 +1,284 @@
|
||||
.tabulator {
|
||||
position: relative;
|
||||
font-size: 14px;
|
||||
text-align: left;
|
||||
overflow: hidden;
|
||||
transform: translateZ(0);
|
||||
}
|
||||
|
||||
.tabulator .tabulator-header {
|
||||
position: relative;
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
color: rgb(54, 54, 51);
|
||||
font-weight: bold;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
.tabulator-header-hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.tabulator .tabulator-header .tabulator-header-contents {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.tabulator .tabulator-header .tabulator-col {
|
||||
display: inline-flex;
|
||||
position: relative;
|
||||
box-sizing: border-box;
|
||||
flex-direction: column;
|
||||
justify-content: flex-start;
|
||||
text-align: left;
|
||||
vertical-align: middle;
|
||||
overflow: hidden;
|
||||
height: fit-content !important;
|
||||
margin-right: 3px;
|
||||
}
|
||||
/* .tabulator-col-resize-handle {
|
||||
height: fit-content !important;
|
||||
} */
|
||||
|
||||
.tabulator .tabulator-headers {
|
||||
}
|
||||
|
||||
.tabulator .tabulator-headers .tabulator-col-resize-handle {
|
||||
width: 3px;
|
||||
height: 25px !important;
|
||||
}
|
||||
|
||||
.tabulator .tabulator-tableholder {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
white-space: nowrap;
|
||||
overflow: auto;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
|
||||
.tabulator .tabulator-tableholder .tabulator-table {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
white-space: nowrap;
|
||||
overflow: visible;
|
||||
color: #333;
|
||||
}
|
||||
.tabulator-row {
|
||||
position: relative;
|
||||
box-sizing: border-box;
|
||||
min-height: 22px;
|
||||
background-color: rgb(var(--color-slate-50));
|
||||
width: calc(100% - 15px);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.tabulator-row:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
.tabulator-row .tabulator-cell {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
box-sizing: border-box;
|
||||
vertical-align: middle;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
.tabulator-cell:first-child {
|
||||
padding: 0 0.25rem;
|
||||
}
|
||||
|
||||
.tabulator-placeholder-contents {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.tabulator .tabulator-col-resize-handle {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 6px;
|
||||
margin-left: -3px;
|
||||
margin-right: -3px;
|
||||
z-index: 10;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.tabulator .tabulator-header .tabulator-col .tabulator-col-content {
|
||||
box-sizing: border-box;
|
||||
position: relative;
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.tabulator
|
||||
.tabulator-header
|
||||
.tabulator-col
|
||||
.tabulator-col-content
|
||||
.tabulator-col-title-holder {
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
}
|
||||
.tabulator-col-title {
|
||||
display: none;
|
||||
text-align: center;
|
||||
color: #7d7d7d;
|
||||
font-size: 14px;
|
||||
font-weight: 900;
|
||||
}
|
||||
/* .tabulator .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-title { */
|
||||
/* padding-right: 25px; */
|
||||
/* } */
|
||||
/*
|
||||
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title {
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
vertical-align: bottom;
|
||||
text-align: center;
|
||||
} */
|
||||
|
||||
.tabulator
|
||||
.tabulator-header
|
||||
.tabulator-col.tabulator-sortable[aria-sort="none"]
|
||||
.tabulator-col-content
|
||||
.tabulator-col-sorter {
|
||||
color: #bbb;
|
||||
}
|
||||
|
||||
.tabulator
|
||||
.tabulator-header
|
||||
.tabulator-col
|
||||
.tabulator-col-content
|
||||
.tabulator-col-sorter {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
bottom: 0;
|
||||
right: 4px;
|
||||
}
|
||||
|
||||
.tabulator
|
||||
.tabulator-header
|
||||
.tabulator-col.tabulator-sortable[aria-sort="none"]
|
||||
.tabulator-col-content
|
||||
.tabulator-col-sorter
|
||||
.tabulator-arrow {
|
||||
border-top: none;
|
||||
border-bottom: 6px solid #bbb;
|
||||
}
|
||||
.tabulator
|
||||
.tabulator-header
|
||||
.tabulator-col
|
||||
.tabulator-col-content
|
||||
.tabulator-col-sorter
|
||||
.tabulator-arrow {
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-left: 6px solid transparent;
|
||||
border-right: 6px solid transparent;
|
||||
border-bottom: 6px solid #bbb;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.tabulator-header-filter > input {
|
||||
padding: 0px 0.5rem !important;
|
||||
font-size: 10px;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.tabulator-header-filter {
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.tabulator-header-filter > input {
|
||||
border-radius: 0;
|
||||
border: none;
|
||||
border-bottom: 1px solid rgb(var(--color-slate-200));
|
||||
}
|
||||
.tabulator
|
||||
.tabulator-header
|
||||
.tabulator-col.tabulator-col-sorter-element[aria-sort="descending"]
|
||||
.tabulator-col-sorter
|
||||
.tabulator-arrow {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
.tabulator-row .tabulator-cell.tabulator-row-handle .tabulator-row-handle-box .tabulator-row-handle-bar {
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
border-radius: 100px;
|
||||
margin-top: 2px;
|
||||
background: rgb(115, 115, 121);
|
||||
}
|
||||
|
||||
.tabulator-row .tabulator-cell.tabulator-row-handle .tabulator-row-handle-box {
|
||||
width: 80%;
|
||||
cursor: grab;
|
||||
}
|
||||
|
||||
.tabulator-row .tabulator-cell.tabulator-frozen {
|
||||
display: inline-block;
|
||||
position: sticky;
|
||||
left: 0;
|
||||
background-color: inherit;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-left {
|
||||
border-right: 2px solid #aaa;
|
||||
}
|
||||
|
||||
.tabulator-row.tabulator-moving{
|
||||
position:absolute;
|
||||
border-top:1px solid #aaa;
|
||||
border-bottom:1px solid #aaa;
|
||||
pointer-events:none;
|
||||
z-index:15;
|
||||
cursor: grabbing;
|
||||
}
|
||||
|
||||
.tabulator-row .tabulator-row-resize-handle{position:absolute;right:0;bottom:0;left:0;height:5px}
|
||||
|
||||
.tabulator-row .tabulator-row-resize-handle.prev{top:0;bottom:auto}
|
||||
|
||||
.tabulator-row .tabulator-row-resize-handle:hover{cursor:ns-resize}
|
||||
|
||||
.tabulator-row .tabulator-responsive-collapse{box-sizing:border-box;padding:5px;border-top:1px solid #aaa;border-bottom:1px solid #aaa}
|
||||
|
||||
.tabulator-row .tabulator-responsive-collapse:empty{display:none}
|
||||
|
||||
.tabulator-row .tabulator-responsive-collapse table{font-size:14px}
|
||||
|
||||
.tabulator-row .tabulator-responsive-collapse table tr td{position:relative}
|
||||
|
||||
.tabulator-row .tabulator-responsive-collapse table tr td:first-of-type{padding-right:10px}
|
||||
|
||||
.tabulator-row .tabulator-cell{display:inline-block;position:relative;box-sizing:border-box;padding:4px;border-right:1px solid #aaa;vertical-align:middle;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
|
||||
|
||||
.tabulator-row .tabulator-cell.tabulator-frozen{display:inline-block;position:sticky;left:0;background-color:inherit;z-index:10}
|
||||
|
||||
.tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-left{border-right:2px solid #aaa}.tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-right{border-left:2px solid #aaa}
|
||||
|
||||
.tabulator-row .tabulator-cell.tabulator-editing{border:1px solid #1d68cd;outline:none;padding:0}
|
||||
|
||||
|
||||
.tabulator-row .tabulator-cell.tabulator-validation-fail{border:1px solid #d00}
|
||||
|
||||
|
||||
.tabulator-row .tabulator-cell.tabulator-row-handle {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
-moz-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-webkit-user-select: none;
|
||||
-o-user-select: none;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=tabulator.min.css.map */
|
||||
4
users-manage/public/css/fonts.css
Normal file
4
users-manage/public/css/fonts.css
Normal file
@@ -0,0 +1,4 @@
|
||||
@font-face {
|
||||
font-family: Nunito;
|
||||
src: url(../fonts/Nunito.ttf);
|
||||
}
|
||||
119
users-manage/public/css/global.css
Normal file
119
users-manage/public/css/global.css
Normal file
@@ -0,0 +1,119 @@
|
||||
|
||||
body {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
html body {
|
||||
overflow-x: hidden;
|
||||
font-family: Nunito;
|
||||
font-size: 0.875rem;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.text-ssm {
|
||||
font-size: 0.675rem;
|
||||
line-height: 1.1rem;
|
||||
}
|
||||
|
||||
input[phx-hook='ToggleInput'] {
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
|
||||
.fontw-100 {
|
||||
font-weight: 100
|
||||
}
|
||||
|
||||
.fontw-200 {
|
||||
font-weight: 200;
|
||||
}
|
||||
|
||||
.fontw-300 {
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
.fontw-400 {
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.fontw-500 {
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.fontw-600 {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.fontw-700 {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.fontw-800 {
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.fontw-900 {
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
.font-w-100 {
|
||||
font-weight: 100
|
||||
}
|
||||
|
||||
.font-w-200 {
|
||||
font-weight: 200;
|
||||
}
|
||||
|
||||
.font-w-300 {
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
.font-w-400 {
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.font-w-500 {
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.font-w-600 {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.font-w-700 {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.font-w-800 {
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.font-w-900 {
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
.transition-all {
|
||||
transition: all .3s;
|
||||
}
|
||||
|
||||
.transition-3 {
|
||||
transition: all .3s;
|
||||
}
|
||||
|
||||
.transition-4 {
|
||||
transition: all .4s;
|
||||
}
|
||||
|
||||
.transition-5 {
|
||||
transition: all .5s;
|
||||
}
|
||||
|
||||
.transition-6 {
|
||||
transition: all .6s;
|
||||
}
|
||||
|
||||
.transition-7 {
|
||||
transition: all .7s;
|
||||
}
|
||||
156
users-manage/public/css/remixicons/index.html
Normal file
156
users-manage/public/css/remixicons/index.html
Normal file
File diff suppressed because one or more lines are too long
2782
users-manage/public/css/remixicons/remixicon.css
Normal file
2782
users-manage/public/css/remixicons/remixicon.css
Normal file
File diff suppressed because it is too large
Load Diff
BIN
users-manage/public/css/remixicons/remixicon.eot
Normal file
BIN
users-manage/public/css/remixicons/remixicon.eot
Normal file
Binary file not shown.
1
users-manage/public/css/remixicons/remixicon.glyph.json
Normal file
1
users-manage/public/css/remixicons/remixicon.glyph.json
Normal file
File diff suppressed because one or more lines are too long
2784
users-manage/public/css/remixicons/remixicon.less
Normal file
2784
users-manage/public/css/remixicons/remixicon.less
Normal file
File diff suppressed because it is too large
Load Diff
2766
users-manage/public/css/remixicons/remixicon.module.less
Normal file
2766
users-manage/public/css/remixicons/remixicon.module.less
Normal file
File diff suppressed because it is too large
Load Diff
5501
users-manage/public/css/remixicons/remixicon.scss
Normal file
5501
users-manage/public/css/remixicons/remixicon.scss
Normal file
File diff suppressed because it is too large
Load Diff
2753
users-manage/public/css/remixicons/remixicon.styl
Normal file
2753
users-manage/public/css/remixicons/remixicon.styl
Normal file
File diff suppressed because it is too large
Load Diff
8230
users-manage/public/css/remixicons/remixicon.svg
Normal file
8230
users-manage/public/css/remixicons/remixicon.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 2.3 MiB |
11
users-manage/public/css/remixicons/remixicon.symbol.svg
Normal file
11
users-manage/public/css/remixicons/remixicon.symbol.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 1.4 MiB |
BIN
users-manage/public/css/remixicons/remixicon.ttf
Normal file
BIN
users-manage/public/css/remixicons/remixicon.ttf
Normal file
Binary file not shown.
BIN
users-manage/public/css/remixicons/remixicon.woff
Normal file
BIN
users-manage/public/css/remixicons/remixicon.woff
Normal file
Binary file not shown.
BIN
users-manage/public/css/remixicons/remixicon.woff2
Normal file
BIN
users-manage/public/css/remixicons/remixicon.woff2
Normal file
Binary file not shown.
19306
users-manage/public/css/remixicons/symbol.html
Normal file
19306
users-manage/public/css/remixicons/symbol.html
Normal file
File diff suppressed because it is too large
Load Diff
175
users-manage/public/css/remixicons/unicode.html
Normal file
175
users-manage/public/css/remixicons/unicode.html
Normal file
File diff suppressed because one or more lines are too long
BIN
users-manage/public/fonts/Nunito-Italic-VariableFont_wght.ttf
Normal file
BIN
users-manage/public/fonts/Nunito-Italic-VariableFont_wght.ttf
Normal file
Binary file not shown.
BIN
users-manage/public/fonts/Nunito.ttf
Normal file
BIN
users-manage/public/fonts/Nunito.ttf
Normal file
Binary file not shown.
93
users-manage/public/fonts/OFL.txt
Normal file
93
users-manage/public/fonts/OFL.txt
Normal file
@@ -0,0 +1,93 @@
|
||||
Copyright 2014 The Nunito Project Authors (https://github.com/googlefonts/nunito)
|
||||
|
||||
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.
|
||||
79
users-manage/public/fonts/README.txt
Normal file
79
users-manage/public/fonts/README.txt
Normal file
@@ -0,0 +1,79 @@
|
||||
Nunito Variable Font
|
||||
====================
|
||||
|
||||
This download contains Nunito as both variable fonts and static fonts.
|
||||
|
||||
Nunito is a variable font with this axis:
|
||||
wght
|
||||
|
||||
This means all the styles are contained in these files:
|
||||
Nunito-VariableFont_wght.ttf
|
||||
Nunito-Italic-VariableFont_wght.ttf
|
||||
|
||||
If your app fully supports variable fonts, you can now pick intermediate styles
|
||||
that aren’t available as static fonts. Not all apps support variable fonts, and
|
||||
in those cases you can use the static font files for Nunito:
|
||||
static/Nunito-ExtraLight.ttf
|
||||
static/Nunito-Light.ttf
|
||||
static/Nunito-Regular.ttf
|
||||
static/Nunito-Medium.ttf
|
||||
static/Nunito-SemiBold.ttf
|
||||
static/Nunito-Bold.ttf
|
||||
static/Nunito-ExtraBold.ttf
|
||||
static/Nunito-Black.ttf
|
||||
static/Nunito-ExtraLightItalic.ttf
|
||||
static/Nunito-LightItalic.ttf
|
||||
static/Nunito-Italic.ttf
|
||||
static/Nunito-MediumItalic.ttf
|
||||
static/Nunito-SemiBoldItalic.ttf
|
||||
static/Nunito-BoldItalic.ttf
|
||||
static/Nunito-ExtraBoldItalic.ttf
|
||||
static/Nunito-BlackItalic.ttf
|
||||
|
||||
Get started
|
||||
-----------
|
||||
|
||||
1. Install the font files you want to use
|
||||
|
||||
2. Use your app's font picker to view the font family and all the
|
||||
available styles
|
||||
|
||||
Learn more about variable fonts
|
||||
-------------------------------
|
||||
|
||||
https://developers.google.com/web/fundamentals/design-and-ux/typography/variable-fonts
|
||||
https://variablefonts.typenetwork.com
|
||||
https://medium.com/variable-fonts
|
||||
|
||||
In desktop apps
|
||||
|
||||
https://theblog.adobe.com/can-variable-fonts-illustrator-cc
|
||||
https://helpx.adobe.com/nz/photoshop/using/fonts.html#variable_fonts
|
||||
|
||||
Online
|
||||
|
||||
https://developers.google.com/fonts/docs/getting_started
|
||||
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Fonts/Variable_Fonts_Guide
|
||||
https://developer.microsoft.com/en-us/microsoft-edge/testdrive/demos/variable-fonts
|
||||
|
||||
Installing fonts
|
||||
|
||||
MacOS: https://support.apple.com/en-us/HT201749
|
||||
Linux: https://www.google.com/search?q=how+to+install+a+font+on+gnu%2Blinux
|
||||
Windows: https://support.microsoft.com/en-us/help/314960/how-to-install-or-remove-a-font-in-windows
|
||||
|
||||
Android Apps
|
||||
|
||||
https://developers.google.com/fonts/docs/android
|
||||
https://developer.android.com/guide/topics/ui/look-and-feel/downloadable-fonts
|
||||
|
||||
License
|
||||
-------
|
||||
Please read the full license text (OFL.txt) to understand the permissions,
|
||||
restrictions and requirements for usage, redistribution, and modification.
|
||||
|
||||
You can use them in your products & projects – print or digital,
|
||||
commercial or otherwise.
|
||||
|
||||
This isn't legal advice, please consider consulting a lawyer and see the full
|
||||
license for all details.
|
||||
BIN
users-manage/public/fonts/static/Nunito-Black.ttf
Normal file
BIN
users-manage/public/fonts/static/Nunito-Black.ttf
Normal file
Binary file not shown.
BIN
users-manage/public/fonts/static/Nunito-BlackItalic.ttf
Normal file
BIN
users-manage/public/fonts/static/Nunito-BlackItalic.ttf
Normal file
Binary file not shown.
BIN
users-manage/public/fonts/static/Nunito-Bold.ttf
Normal file
BIN
users-manage/public/fonts/static/Nunito-Bold.ttf
Normal file
Binary file not shown.
BIN
users-manage/public/fonts/static/Nunito-BoldItalic.ttf
Normal file
BIN
users-manage/public/fonts/static/Nunito-BoldItalic.ttf
Normal file
Binary file not shown.
BIN
users-manage/public/fonts/static/Nunito-ExtraBold.ttf
Normal file
BIN
users-manage/public/fonts/static/Nunito-ExtraBold.ttf
Normal file
Binary file not shown.
BIN
users-manage/public/fonts/static/Nunito-ExtraBoldItalic.ttf
Normal file
BIN
users-manage/public/fonts/static/Nunito-ExtraBoldItalic.ttf
Normal file
Binary file not shown.
BIN
users-manage/public/fonts/static/Nunito-ExtraLight.ttf
Normal file
BIN
users-manage/public/fonts/static/Nunito-ExtraLight.ttf
Normal file
Binary file not shown.
BIN
users-manage/public/fonts/static/Nunito-ExtraLightItalic.ttf
Normal file
BIN
users-manage/public/fonts/static/Nunito-ExtraLightItalic.ttf
Normal file
Binary file not shown.
BIN
users-manage/public/fonts/static/Nunito-Italic.ttf
Normal file
BIN
users-manage/public/fonts/static/Nunito-Italic.ttf
Normal file
Binary file not shown.
BIN
users-manage/public/fonts/static/Nunito-Light.ttf
Normal file
BIN
users-manage/public/fonts/static/Nunito-Light.ttf
Normal file
Binary file not shown.
BIN
users-manage/public/fonts/static/Nunito-LightItalic.ttf
Normal file
BIN
users-manage/public/fonts/static/Nunito-LightItalic.ttf
Normal file
Binary file not shown.
BIN
users-manage/public/fonts/static/Nunito-Medium.ttf
Normal file
BIN
users-manage/public/fonts/static/Nunito-Medium.ttf
Normal file
Binary file not shown.
BIN
users-manage/public/fonts/static/Nunito-MediumItalic.ttf
Normal file
BIN
users-manage/public/fonts/static/Nunito-MediumItalic.ttf
Normal file
Binary file not shown.
BIN
users-manage/public/fonts/static/Nunito-Regular.ttf
Normal file
BIN
users-manage/public/fonts/static/Nunito-Regular.ttf
Normal file
Binary file not shown.
BIN
users-manage/public/fonts/static/Nunito-SemiBold.ttf
Normal file
BIN
users-manage/public/fonts/static/Nunito-SemiBold.ttf
Normal file
Binary file not shown.
BIN
users-manage/public/fonts/static/Nunito-SemiBoldItalic.ttf
Normal file
BIN
users-manage/public/fonts/static/Nunito-SemiBoldItalic.ttf
Normal file
Binary file not shown.
1
users-manage/public/vite.svg
Normal file
1
users-manage/public/vite.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
Reference in New Issue
Block a user