Add files via upload

This commit is contained in:
ShadowLibraries 2023-08-22 21:47:05 -03:00 committed by GitHub
parent c4cf3e02aa
commit 960f9988b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
31 changed files with 1507 additions and 2 deletions

378
css/component.css Normal file
View file

@ -0,0 +1,378 @@
/* Icons (made with Icomoon.io) */
@font-face {
font-family: 'feather';
font-weight: normal;
font-style: normal;
src: url('../fonts/feather/feather.eot?1gafuo');
src: url('../fonts/feather/feather.eot?1gafuo#iefix') format('embedded-opentype'), url('../fonts/feather/feather.woff2?1gafuo') format('woff2'), url('../fonts/feather/feather.ttf?1gafuo') format('truetype'), url('../fonts/feather/feather.woff?1gafuo') format('woff'), url('../fonts/feather/feather.svg?1gafuo#feather') format('svg');
}
.icon {
font-family: 'feather';
font-weight: normal;
font-style: normal;
font-variant: normal;
line-height: 1;
text-transform: none;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
speak: none;
}
.icon--arrow-left:before {
content: '\e901';
}
.icon--menu:before {
content: '\e903';
}
.icon--cross:before {
content: '\e117';
}
/* Menu styles */
.menu {
position: fixed;
top: 120px;
left: 0;
width: 300px;
height: calc(100vh - 120px);
background: #1c1d22;
}
.menu__wrap {
position: absolute;
top: 3.5em;
bottom: 0;
overflow: hidden;
width: 100%;
}
.menu__level {
position: absolute;
top: 0;
left: 0;
visibility: hidden;
overflow: hidden;
overflow-y: scroll;
width: calc(100% + 50px);
height: 100%;
margin: 0;
padding: 0;
list-style-type: none;
}
.menu__level:focus {
outline: none;
}
.menu__level--current {
visibility: visible;
}
.menu__item {
display: block;
width: calc(100% - 50px);
}
.menu__link {
font-weight: 600;
position: relative;
display: block;
padding: 1em 2.5em 1em 1.5em;
color: #bdbdbd;
-webkit-transition: color 0.1s;
transition: color 0.1s;
}
.menu__link[data-submenu]::after {
content: '\e904';
font-family: 'feather';
position: absolute;
right: 0;
padding: 0.25em 1.25em;
color: #2a2b30;
}
.menu__link:hover,
.menu__link:focus,
.menu__link[data-submenu]:hover::after,
.menu__link[data-submenu]:focus::after {
color: #5c5edc;
}
.menu__link--current::before {
content: '\00B7';
font-size: 1.5em;
line-height: 0;
position: absolute;
top: 50%;
left: 0.5em;
height: 4px;
color: #5c5edc;
}
[class^='animate-'],
[class*=' animate-'] {
visibility: visible;
}
.animate-outToRight .menu__item {
-webkit-animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}
#random-image {
width:360px;
height:275px;
}
.titunotf {
text-align:center;
color:#a480ff;
font-size: 3rem;
padding: 10vh 1em 0;
}
.map {
width: 15rem;
height: 15rem;
}
@-webkit-keyframes outToRight {
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes outToRight {
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.animate-outToLeft .menu__item {
-webkit-animation: outToLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
animation: outToLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}
@-webkit-keyframes outToLeft {
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes outToLeft {
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.animate-inFromLeft .menu__item {
-webkit-animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}
@-webkit-keyframes inFromLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes inFromLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.animate-inFromRight .menu__item {
-webkit-animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}
@-webkit-keyframes inFromRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes inFromRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.menu__breadcrumbs {
font-size: 0.65em;
line-height: 1;
position: relative;
padding: 2.5em 3.75em 1.5em 2.5em;
}
.menu__breadcrumbs a {
font-weight: bold;
display: inline-block;
cursor: pointer;
vertical-align: middle;
letter-spacing: 1px;
text-transform: uppercase;
color: #5c5edc;
}
.menu__breadcrumbs a:last-child {
pointer-events: none;
}
.menu__breadcrumbs a:hover,
.menu__breadcrumbs a:focus {
color: #8182e0;
}
.menu__breadcrumbs a:not(:last-child)::after {
content: '\e902';
font-family: 'feather';
display: inline-block;
padding: 0 0.5em;
color: #33353e;
}
.menu__breadcrumbs a:not(:last-child):hover::after,
.menu__breadcrumbs a:not(:last-child):focus::after {
color: #33353e;
}
.menu__back {
font-size: 1.05em;
position: absolute;
z-index: 100;
top: 0;
right: 2.25em;
margin: 0;
padding: 1.365em 0.65em 0 0;
cursor: pointer;
color: #2a2b30;
border: none;
background: none;
}
.menu__back--hidden {
pointer-events: none;
opacity: 0;
}
.menu__back:hover,
.menu__back:focus {
color: #fff;
outline: none;
}
/* Open and close buttons */
.action {
position: absolute;
display: block;
margin: 0;
padding: 0;
cursor: pointer;
border: none;
background: none;
}
.action:focus {
outline: none;
}
.action--open {
font-size: 1.5em;
top: 1em;
left: 1em;
display: none;
color: #fff;
position: fixed;
z-index: 1000;
}
.action--close {
font-size: 1.1em;
top: 1.25em;
right: 1em;
display: none;
color: #45464e;
}
@media screen and (max-width: 40em) {
.action--open,
.action--close {
display: block;
}
.menu {
z-index: 1000;
top: 0;
width: 100%;
height: 100vh;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
}
.menu--open {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
#random-image {
width: 90%;
height: auto;
}
.map {
max-width: 15rem;
width: 80%;
height: auto;
}
}
.subtitulo {
text-align:left;
color:#a480ff;
font-weight: bold;
}

332
css/demo.css Normal file
View file

@ -0,0 +1,332 @@
/* General Blueprint Style */
@font-face {
font-family: 'bpicons';
font-weight: normal;
font-style: normal;
src: url('../fonts/bpicons/bpicons.eot');
src: url('../fonts/bpicons/bpicons.eot?#iefix') format('embedded-opentype'), url('../fonts/bpicons/bpicons.woff') format('woff'), url('../fonts/bpicons/bpicons.ttf') format('truetype'), url('../fonts/bpicons/bpicons.svg#bpicons') format('svg');
}/* Made with http://icomoon.io/ */
/* Resets */
*,
*:after,
*:before {
box-sizing: border-box;
}
/* Helper classes */
.cf:before,
.cf:after {
content: ' ';
display: table;
}
.cf:after {
clear: both;
}
/* Main styles */
body {
font-family: 'Avenir Next', Avenir, 'Helvetica Neue', 'Lato', 'Segoe UI', Helvetica, Arial, sans-serif;
overflow: hidden;
margin: 0;
color: #cecece;
background: #2a2b30;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a {
text-decoration: none;
color: #fff;
outline: none;
}
a:hover {
color: #ddd;
}
.container {
overflow-y: auto;
height: 100vh;
}
/* Blueprint header */
.bp-header {
display: -webkit-flex;
display: flex;
}
.bp-header__main {
margin: 0 0 0 auto;
padding: 2em 3em 0;
text-align: right;
}
.bp-header__title {
font-size: 1.3em;
font-weight: 400;
line-height: 1.3;
margin: 0.25em 0 0;
}
h4 {
font-size: 1.2em;
font-weight: 400;
line-height: 1.3;
margin: 0.1em 0 0;
color: #696b74;
}
.bp-header__present {
font-size: 0.75em;
font-weight: 700;
position: relative;
z-index: 100;
display: block;
margin: 0 -8px 0 0;
padding: 0 0 0.6em 0;
text-indent: 3px;
letter-spacing: 3px;
text-transform: uppercase;
color: #5c5edc;
}
.bp-tooltip:after {
position: relative;
top: -8px;
left: -8px;
display: inline-block;
width: 0;
height: 0;
}
.bp-tooltip:hover:before {
content: attr(data-content);
font-size: 110%;
font-weight: 700;
line-height: 1.2;
position: absolute;
top: 1.5em;
right: 0;
width: 50vw;
padding: 0.8em 1em;
text-align: right;
text-indent: 0;
letter-spacing: 0;
text-transform: none;
color: #fff;
background: #5c5edc;
}
.bp-nav {
margin: 0.5em 0 0 auto;
text-align: right;
}
.bp-nav__item {
position: relative;
display: inline-block;
width: 2.5em;
height: 2.5em;
margin: 0 0.1em;
text-align: left;
border-radius: 50%;
}
.bp-nav__item > span {
display: none;
}
.bp-nav__item:hover:before {
content: attr(data-info);
font-size: 0.85em;
font-weight: bold;
position: absolute;
top: 120%;
right: 0;
width: 600%;
text-align: right;
pointer-events: none;
color: #595a5f;
}
.bp-nav__item:hover {
background: #5c5edc;
}
.bp-icon:after {
font-family: 'bpicons';
font-weight: normal;
font-style: normal;
font-variant: normal;
text-align: center;
text-transform: none;
color: #5c5edc;
-webkit-font-smoothing: antialiased;
speak: none;
}
.bp-nav .bp-icon:after {
line-height: 2.4;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
text-indent: 0;
}
.bp-nav a:hover:after {
color: #fff;
}
.bp-icon--next:after {
content: '\e000';
}
.bp-icon--drop:after {
content: '\e001';
}
.bp-icon--archive:after {
content: '\e002';
}
.bp-icon--about:after {
content: '\e003';
}
.bp-icon--prev:after {
content: '\e004';
}
.dummy-logo {
position: fixed;
top: 0;
left: 0;
width: 300px;
height: 120px;
padding: 1em 0 0 0;
text-align: center;
color: #3b3d4a;
background: #1c1d22;
}
.dummy-icon {
font-size: 4em;
}
.dummy-heading {
font-size: 0.75em;
letter-spacing: 2px;
text-transform: uppercase;
}
.content {
position: relative;
min-height: 300px;
margin: 0 150px 0 350px;
}
.contentnf {
position: relative;
min-height: 300px;
margin: 0 1%;
}
.content--loading {
background: url(../img/loading.svg) no-repeat 50% 50%;
}
.products {
margin: 0;
padding: 2em;
text-align: center;
}
.product {
display: inline-block;
width: 200px;
height: 200px;
margin: 10px;
border-radius: 5px;
background: #1c1d22;
}
.product .foodicon {
font-size: 4em;
line-height: 190px;
color: #3b3d4a;
}
.info {
font-size: 1.1em;
font-weight: bold;
padding: 20vh 1em 0;
text-align: center;
color: #47484c;
}
.infonf {
font-size: 1.1em;
font-weight: bold;
padding: 1% 0;
text-align: center;
color: #47484c;
}
body #cdawrap {
top: auto;
bottom: 15px;
background: rgba(0, 0, 0, 0.1);
}
body #cdawrap .carbon-text {
color: #505158;
}
body #cdawrap a.carbon-poweredby {
color: #7883c4;
}
body #cdawrap a:hover.carbon-poweredby {
color: #fff;
}
@media screen and (max-width: 40em) {
.bp-header {
padding-top: 3em;
}
.bp-header__main,
.bp-nav {
width: 100%;
text-align: center;
}
.dummy-logo {
display: none;
}
.content {
margin: 0;
}
body,
.container {
height: auto;
overflow: auto;
}
.contentnf {
position: relative;
min-height: 1%;
margin: 0 1%;
}
}