Merge branch 'features/rewrite/styles' of https://git.tompit.com/Connected/Connected.Components into features/rewrite/styles
commit
08fa1bd90c
@ -1 +1 @@
|
||||
Subproject commit dd40532a0ff03237407de9635c7211c5e1af5807
|
||||
Subproject commit cc259dfc18c4ad6989898fa813e281b9249c3bd3
|
@ -1,16 +1,40 @@
|
||||
@page "/"
|
||||
@using Connected.Models;
|
||||
@using Connected.Components;
|
||||
|
||||
|
||||
<h1 style="text-align:center;">Component Sandbox</h1>
|
||||
|
||||
<<<<<<< HEAD
|
||||
<DatePicker @bind-SelectedDate=date>
|
||||
|
||||
</DatePicker>
|
||||
|
||||
<p>Izbran datum je: @date</p>
|
||||
=======
|
||||
<FormWizard Id="Wizard1">
|
||||
<FormWizardStep Name="Step1">
|
||||
Step1
|
||||
</FormWizardStep>
|
||||
<FormWizardStep Name="Step2">
|
||||
Step2
|
||||
</FormWizardStep>
|
||||
<FormWizardStep Name="Step3">
|
||||
Step3
|
||||
</FormWizardStep>
|
||||
<FormWizardStep Name="Step4">
|
||||
Step4
|
||||
</FormWizardStep>
|
||||
</FormWizard>
|
||||
<DatePicker
|
||||
CloseOnDateSelect=true
|
||||
@bind-SelectedDate=@date>
|
||||
|
||||
</DatePicker>
|
||||
|
||||
<p>Selected date is @date.ToString()</p>
|
||||
>>>>>>> f35b855ba7f7efe1991867b4d60a2a2959005c60
|
||||
|
||||
@code {
|
||||
DateTime date = DateTime.Today;
|
||||
|
||||
}
|
@ -0,0 +1,144 @@
|
||||
@use "../util" as *;
|
||||
@use "../globals" as *;
|
||||
|
||||
|
||||
.picker-container {
|
||||
position: fixed;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
max-width: 85%;
|
||||
width: 85%;
|
||||
padding: 1rem;
|
||||
z-index: $dropdown-zindex;
|
||||
background-color: var(--bg-core-primary-light);
|
||||
border-radius: calc($border-radius-lg *2 );
|
||||
box-shadow: $base-box-shadow, 0 0 0 100vw rgba(0,0,0,.5);
|
||||
}
|
||||
|
||||
|
||||
@include breakpoint(sm) {
|
||||
.picker-container {
|
||||
position: absolute;
|
||||
top: auto;
|
||||
left: auto;
|
||||
transform: none;
|
||||
margin-top: .5rem;
|
||||
max-width: 350px;
|
||||
width: 100%;
|
||||
box-shadow: $base-box-shadow;
|
||||
}
|
||||
}
|
||||
|
||||
#picker-header {
|
||||
padding: .5rem 1rem;
|
||||
}
|
||||
|
||||
#picker-body {
|
||||
padding: 0 0.5rem 0.75rem;;
|
||||
}
|
||||
|
||||
|
||||
.picker-header-label {
|
||||
font-size: $font-size-sm;
|
||||
color: var(--text-core-lc);
|
||||
|
||||
}
|
||||
|
||||
.picker-header-title {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.picker-divider {
|
||||
width: 100%;
|
||||
height: 0;
|
||||
margin: 0 0 .5rem 0;
|
||||
overflow: hidden;
|
||||
border-top: 1px solid var(--text-core-vc);
|
||||
}
|
||||
|
||||
.picker-menu {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0.5rem -0.75rem 0.75rem;
|
||||
|
||||
}
|
||||
|
||||
.picker-grid-col-3 {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
}
|
||||
|
||||
.picker-grid-col-7 {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(7, 1fr);
|
||||
}
|
||||
|
||||
|
||||
.days{
|
||||
width: 2rem;
|
||||
height: 2rem;
|
||||
color: var(--text-core);
|
||||
text-transform: uppercase;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
background-color:transparent;
|
||||
font-size: .85rem;
|
||||
font-weight: 500;
|
||||
border-radius: 50%;
|
||||
// &:hover {
|
||||
// background-color:var(--bg-core-primary);
|
||||
// color: var(--text-core-hc);
|
||||
// }
|
||||
&:focus-visible,
|
||||
&.focus {
|
||||
outline: 0;
|
||||
box-shadow: 0 0 0 0.15rem var(--bg-core-primary-lighten);
|
||||
}
|
||||
&:active,
|
||||
&.active {
|
||||
background-color:var(--bg-core-primary-dark);
|
||||
color: #fafafa;
|
||||
}
|
||||
&.current {
|
||||
background-color:transparent;
|
||||
color: var(--bg-core-primary-dark);
|
||||
border: 1px solid var(--bg-core-primary-dark);
|
||||
}
|
||||
}
|
||||
|
||||
.item {
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
display: inline-block;
|
||||
cursor: pointer;
|
||||
font-weight: 500;
|
||||
white-space: nowrap;
|
||||
color: var(--text-core);
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
user-select: none;
|
||||
background-color:transparent;
|
||||
border: 1px solid transparent;
|
||||
//padding: 0.3rem 1rem;
|
||||
font-size: .85rem;
|
||||
text-transform: uppercase;
|
||||
text-decoration: none;
|
||||
border-radius: 100vw;
|
||||
transition: all .15s ease-in-out;
|
||||
&:hover {
|
||||
background-color: var(--bg-core-primary);
|
||||
}
|
||||
&:focus-visible,
|
||||
&.focus {
|
||||
outline: 0;
|
||||
box-shadow: 0 0 0 0.15rem var(--bg-core-primary-lighten);
|
||||
}
|
||||
&:active,
|
||||
&.active {
|
||||
background-color: var(--bg-core-primary-dark);
|
||||
color: #fafafa;
|
||||
}
|
||||
}
|
@ -1,203 +1,256 @@
|
||||
@use '../globals/' as *;
|
||||
@use '../util/' as *;
|
||||
@use "../globals/" as *;
|
||||
@use "../util/" as *;
|
||||
|
||||
.snackbar-group {
|
||||
position: fixed;
|
||||
z-index: $snackbar-zindex;
|
||||
// top: 0;
|
||||
// right: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow-y: auto;
|
||||
max-height: 100svh;
|
||||
//background:linear-gradient(to left,transparent, transparent, rgba(255,255,255,.15));
|
||||
// border: 1px solid rgba(255, 255, 255, 0.25);
|
||||
// border-radius: 0.6rem;
|
||||
// backdrop-filter: blur(25px) opacity(0.5);
|
||||
transform: translateX(100%);
|
||||
transition: $transition;
|
||||
}
|
||||
|
||||
.snackbar-group{
|
||||
position: fixed;
|
||||
z-index: $snackbar-zindex;
|
||||
// top: 0;
|
||||
// right: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow-y: auto;
|
||||
max-height: 100svh;
|
||||
//background:linear-gradient(to left,transparent, transparent, rgba(255,255,255,.15));
|
||||
border: 1px solid rgba(255,255,255,.25);
|
||||
border-radius: 0.6rem;
|
||||
backdrop-filter: blur(25px) opacity(0.5);
|
||||
.snackbar-group.show {
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
.snackbar {
|
||||
width: 350px;
|
||||
//min-height: 60px;
|
||||
background-color: var(--bg-core-primary-light);
|
||||
background-color: rgba(255,255,255,.8);
|
||||
backdrop-filter: blur(10px);
|
||||
margin: 0 0.75rem 0.75rem;
|
||||
padding: 1rem;
|
||||
border-radius: $border-radius-lg;
|
||||
filter: drop-shadow(1px 2px 4px rgba(0, 0, 0, 0.15));
|
||||
//transform: translateX(100%);
|
||||
}
|
||||
|
||||
.snackbar{
|
||||
width: 350px;
|
||||
//min-height: 60px;
|
||||
background-color: var(--bg-core-primary-light);
|
||||
margin: 0 .75rem .75rem;
|
||||
padding: 1rem;
|
||||
border-radius: $border-radius-lg;
|
||||
filter: drop-shadow(1px 2px 4px rgba(0,0,0,.15));
|
||||
transform: translateX(100%);
|
||||
animation: slidein 0.3s ease-in-out forwards;
|
||||
.snackbar.slide-in {
|
||||
animation: slidein 0.3s ease-in-out forwards;
|
||||
}
|
||||
|
||||
.snackbar.slide-out {
|
||||
animation: slideout 0.3s ease-in-out forwards;
|
||||
}
|
||||
|
||||
@keyframes slidein {
|
||||
100%{
|
||||
transform: translateX(0);
|
||||
}
|
||||
0% {
|
||||
transform: translateX(110%);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
.snackbar:first-of-type{
|
||||
margin-top: 1rem;
|
||||
@keyframes slideout {
|
||||
0% {
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translateX(110%);
|
||||
}
|
||||
}
|
||||
|
||||
.snackbar:first-of-type {
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.snackbar:after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
border-radius: $border-radius-lg;
|
||||
opacity: .3;
|
||||
pointer-events: none;
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
border-radius: $border-radius-lg;
|
||||
opacity: 0.3;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.snackbar.danger:after,
|
||||
.snackbar.danger .snackbar-leading-icon {
|
||||
background-color: $danger;
|
||||
background-color: $danger;
|
||||
}
|
||||
|
||||
.snackbar.warning:after,
|
||||
.snackbar.warning .snackbar-leading-icon {
|
||||
background-color: $warning;
|
||||
background-color: $warning;
|
||||
}
|
||||
|
||||
.snackbar.success:after,
|
||||
.snackbar.success .snackbar-leading-icon {
|
||||
background-color: $success;
|
||||
.snackbar.success .snackbar-leading-icon {
|
||||
background-color: $success;
|
||||
}
|
||||
|
||||
.snackbar.info:after,
|
||||
.snackbar.info .snackbar-leading-icon {
|
||||
background-color: $info;
|
||||
.snackbar.info .snackbar-leading-icon {
|
||||
background-color: $info;
|
||||
}
|
||||
|
||||
.snackbar-content {
|
||||
--height: 2rem;
|
||||
--height: 2rem;
|
||||
|
||||
display: flex;
|
||||
//align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
.snackbar-leading-icon {
|
||||
display: flex;
|
||||
//align-items: center;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: $border-radius-pill;
|
||||
background-color: var(--bg-core-primary);
|
||||
height: var(--height);
|
||||
aspect-ratio: 1 / 1;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.snackbar-leading-icon{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: $border-radius-pill;
|
||||
background-color: var(--bg-core-primary);
|
||||
height: var(--height);
|
||||
aspect-ratio: 1 / 1;
|
||||
overflow: hidden;
|
||||
}
|
||||
.snackbar-leading-icon img {
|
||||
object-fit: cover;
|
||||
height: var(--height);
|
||||
aspect-ratio: 1 / 1;
|
||||
}
|
||||
|
||||
.snackbar-leading-icon img{
|
||||
object-fit: cover;
|
||||
height: var(--height);
|
||||
aspect-ratio: 1 / 1;
|
||||
}
|
||||
.snackbar-cta-icon {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: $border-radius-pill;
|
||||
background-color: transparent;
|
||||
cursor: pointer;
|
||||
height: var(--height);
|
||||
aspect-ratio: 1 / 1;
|
||||
transition: all 0.35s cubic-bezier(0.6, -1.25, 0.6, 2.25);
|
||||
}
|
||||
|
||||
.snackbar-cta-icon{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: $border-radius-pill;
|
||||
background-color: transparent;
|
||||
cursor: pointer;
|
||||
height: var(--height);
|
||||
aspect-ratio: 1 / 1;
|
||||
transition: all 0.35s cubic-bezier(0.6,-1.25,0.6,2.25);
|
||||
}
|
||||
.snackbar-cta-abs {
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
left: -13px;
|
||||
top: -13px;
|
||||
box-shadow: $base-box-shadow;
|
||||
transition: $transition;
|
||||
}
|
||||
|
||||
.snackbar-message{
|
||||
font-size: $font-size-sm;
|
||||
margin: 0 .85rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: start;
|
||||
justify-content: center;
|
||||
flex: 1;
|
||||
}
|
||||
.snackbar-cta-abs .btn-icon {
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.snackbar-title{
|
||||
font-size: $font-size-sm;
|
||||
font-weight: $font-weight-600;
|
||||
color: $text-core-hc;
|
||||
}
|
||||
.snackbar-message {
|
||||
font-size: $font-size-sm;
|
||||
margin-left: 0.85rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: start;
|
||||
justify-content: center;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.snackbar-action {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: .5rem;
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
.snackbar-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.snackbar-action .btn{
|
||||
font-size: .85rem;
|
||||
text-transform: none;
|
||||
padding: .1rem .7rem;
|
||||
border-radius: 0.35rem;
|
||||
}
|
||||
.snackbar-title {
|
||||
font-size: $font-size-sm;
|
||||
font-weight: $font-weight-600;
|
||||
color: $text-core-hc;
|
||||
}
|
||||
|
||||
.snackbar-cta-icon:hover{
|
||||
background-color: rgba(0,0,0,.15);
|
||||
}
|
||||
.snackbar-recived {
|
||||
font-size: .75rem;
|
||||
font-weight: $font-weight-600;
|
||||
color: $text-core-vc;
|
||||
}
|
||||
|
||||
.snackbar-action {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 0.5rem;
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
.snackbar-action .btn {
|
||||
font-size: 0.85rem;
|
||||
text-transform: none;
|
||||
padding: 0.1rem 0.7rem;
|
||||
border-radius: 0.35rem;
|
||||
}
|
||||
|
||||
.snackbar-cta-icon:hover {
|
||||
background-color: rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
}
|
||||
|
||||
.snackbar-group{
|
||||
&.top{
|
||||
top: 0;
|
||||
.snackbar:hover .snackbar-cta-abs {
|
||||
opacity: .9;
|
||||
}
|
||||
|
||||
.snackbar-group {
|
||||
&.top {
|
||||
top: 0;
|
||||
}
|
||||
&.right {
|
||||
right: 0;
|
||||
}
|
||||
&.bottom {
|
||||
bottom: 150px;
|
||||
}
|
||||
&.left {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
@include breakpoint(sm) {
|
||||
&.top {
|
||||
top: 0;
|
||||
}
|
||||
&.right{
|
||||
right: 0;
|
||||
&.right {
|
||||
right: 0;
|
||||
}
|
||||
&.bottom{
|
||||
bottom: 150px;
|
||||
&.bottom {
|
||||
bottom: 0;
|
||||
}
|
||||
&.left{
|
||||
left: 0;
|
||||
&.left {
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@include breakpoint(lg) {
|
||||
&.top {
|
||||
top: 0;
|
||||
}
|
||||
&.right {
|
||||
right: 0;
|
||||
}
|
||||
&.bottom {
|
||||
bottom: 0;
|
||||
}
|
||||
&.left {
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.snackbar {
|
||||
width: 90%;
|
||||
margin: 0 auto 0.75rem auto;
|
||||
|
||||
@include breakpoint(sm) {
|
||||
&.top{
|
||||
top: 0;
|
||||
}
|
||||
&.right{
|
||||
right: 0;
|
||||
}
|
||||
&.bottom{
|
||||
bottom: 0;
|
||||
}
|
||||
&.left{
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@include breakpoint(lg) {
|
||||
&.top{
|
||||
top: 0;
|
||||
}
|
||||
&.right{
|
||||
right: 0;
|
||||
}
|
||||
&.bottom{
|
||||
bottom: 0;
|
||||
}
|
||||
&.left{
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.snackbar{
|
||||
width: 90%;
|
||||
margin: 0 auto .75rem auto;
|
||||
|
||||
|
||||
@include breakpoint(sm) {
|
||||
width: 50vw;
|
||||
margin: 0 .75rem .75rem;
|
||||
}
|
||||
|
||||
@include breakpoint(lg) {
|
||||
width: 350px;
|
||||
}
|
||||
@include breakpoint(sm) {
|
||||
width: 50vw;
|
||||
margin: 0 0.75rem 0.75rem;
|
||||
}
|
||||
|
||||
@include breakpoint(lg) {
|
||||
width: 350px;
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1,94 @@
|
||||
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src:local('OpenSans-LightItalic'), local('Open Sans Light Italic');
|
||||
src: url('./Fonts/OpenSans-LightItalic.eot');
|
||||
src: url('./Fonts/OpenSans-LightItalic.eot?#iefix') format('embedded-opentype'), url('./Fonts/OpenSans-LightItalic.woff2') format('woff2'), url('./Fonts/OpenSans-LightItalic.woff') format('woff'), url('./Fonts/OpenSans-LightItalic.ttf') format('truetype'), url('./Fonts/OpenSans-LightItalic.svg#OpenSans-LightItalic') format('svg');
|
||||
font-weight: 300;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src:local('OpenSans-ExtraBoldItalic'), local('Open Sans Extra Bold Italic');
|
||||
src: url('./Fonts/OpenSans-ExtraBoldItalic.eot');
|
||||
src: url('./Fonts/OpenSans-ExtraBoldItalic.eot?#iefix') format('embedded-opentype'), url('./Fonts/OpenSans-ExtraBoldItalic.woff2') format('woff2'), url('./Fonts/OpenSans-ExtraBoldItalic.woff') format('woff'), url('./Fonts/OpenSans-ExtraBoldItalic.ttf') format('truetype'), url('./Fonts/OpenSans-ExtraBoldItalic.svg#OpenSans-ExtraBoldItalic') format('svg');
|
||||
font-weight: 800;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src:local('OpenSans-Light'), local('Open Sans Light');
|
||||
src: url('./Fonts/OpenSans-Light.eot');
|
||||
src: url('./Fonts/OpenSans-Light.eot?#iefix') format('embedded-opentype'), url('./Fonts/OpenSans-Light.woff2') format('woff2'), url('./Fonts/OpenSans-Light.woff') format('woff'), url('./Fonts/OpenSans-Light.ttf') format('truetype'), url('./Fonts/OpenSans-Light.svg#OpenSans-Light') format('svg');
|
||||
font-weight: 300;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src:local('OpenSans-SemiBold'), local('Open Sans Semi Bold');
|
||||
src: url('./Fonts/OpenSans-SemiBold.eot');
|
||||
src: url('./Fonts/OpenSans-SemiBold.eot?#iefix') format('embedded-opentype'), url('./Fonts/OpenSans-SemiBold.woff2') format('woff2'), url('./Fonts/OpenSans-SemiBold.woff') format('woff'), url('./Fonts/OpenSans-SemiBold.ttf') format('truetype'), url('./Fonts/OpenSans-SemiBold.svg#OpenSans-SemiBold') format('svg');
|
||||
font-weight: 600;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src:local('OpenSans-Regular'), local('Open Sans Regular');
|
||||
src: url('./Fonts/OpenSans-Regular.eot');
|
||||
src: url('./Fonts/OpenSans-Regular.eot?#iefix') format('embedded-opentype'), url('./Fonts/OpenSans-Regular.woff2') format('woff2'), url('./Fonts/OpenSans-Regular.woff') format('woff'), url('./Fonts/OpenSans-Regular.ttf') format('truetype'), url('./Fonts/OpenSans-Regular.svg#OpenSans-Regular') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src:local('OpenSans-BoldItalic'), local('Open Sans Bold Italic');
|
||||
src: url('./Fonts/OpenSans-BoldItalic.eot');
|
||||
src: url('./Fonts/OpenSans-BoldItalic.eot?#iefix') format('embedded-opentype'), url('./Fonts/OpenSans-BoldItalic.woff2') format('woff2'), url('./Fonts/OpenSans-BoldItalic.woff') format('woff'), url('./Fonts/OpenSans-BoldItalic.ttf') format('truetype'), url('./Fonts/OpenSans-BoldItalic.svg#OpenSans-BoldItalic') format('svg');
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src:local('OpenSans-SemiBoldItalic'), local('Open Sans Semi Bold Italic');
|
||||
src: url('./Fonts/OpenSans-SemiBoldItalic.eot');
|
||||
src: url('./Fonts/OpenSans-SemiBoldItalic.eot?#iefix') format('embedded-opentype'), url('./Fonts/OpenSans-SemiBoldItalic.woff2') format('woff2'), url('./Fonts/OpenSans-SemiBoldItalic.woff') format('woff'), url('./Fonts/OpenSans-SemiBoldItalic.ttf') format('truetype'), url('./Fonts/OpenSans-SemiBoldItalic.svg#OpenSans-SemiBoldItalic') format('svg');
|
||||
font-weight: 600;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src:local('OpenSans-Italic'), local('Open Sans Italic');
|
||||
src: url('./Fonts/OpenSans-Italic.eot');
|
||||
src: url('./Fonts/OpenSans-Italic.eot?#iefix') format('embedded-opentype'), url('./Fonts/OpenSans-Italic.woff2') format('woff2'), url('./Fonts/OpenSans-Italic.woff') format('woff'), url('./Fonts/OpenSans-Italic.ttf') format('truetype'), url('./Fonts/OpenSans-Italic.svg#OpenSans-Italic') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src:local('OpenSans-ExtraBold'), local('Open Sans Extra Bold');
|
||||
src: url('./Fonts/OpenSans-ExtraBold.eot');
|
||||
src: url('./Fonts/OpenSans-ExtraBold.eot?#iefix') format('embedded-opentype'), url('./Fonts/OpenSans-ExtraBold.woff2') format('woff2'), url('./Fonts/OpenSans-ExtraBold.woff') format('woff'), url('./Fonts/OpenSans-ExtraBold.ttf') format('truetype'), url('./Fonts/OpenSans-ExtraBold.svg#OpenSans-ExtraBold') format('svg');
|
||||
font-weight: 800;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
src:local('OpenSans-Bold'), local('Open Sans Bold');
|
||||
src: url('./Fonts/OpenSans-Bold.eot');
|
||||
src: url('./Fonts/OpenSans-Bold.eot?#iefix') format('embedded-opentype'), url('./Fonts/OpenSans-Bold.woff2') format('woff2'), url('./Fonts/OpenSans-Bold.woff') format('woff'), url('./Fonts/OpenSans-Bold.ttf') format('truetype'), url('./Fonts/OpenSans-Bold.svg#OpenSans-Bold') format('svg');
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue