Alpha version of the app
This commit is contained in:
+105
-2
@@ -1,14 +1,117 @@
|
||||
@import '@fontsource/Lato/index.css';
|
||||
@import '@fontsource/Alexandria/700.css';
|
||||
@import 'bootstrap/dist/css/bootstrap.css';
|
||||
@import 'animate.css';
|
||||
.page-enter-active, .page-leave-active {
|
||||
transition: all 0.4s;
|
||||
}
|
||||
.page-enter-from, .page-leave-to {
|
||||
opacity: 0;
|
||||
filter: blur(1rem);
|
||||
}
|
||||
|
||||
:root {
|
||||
--animate-delay: 0.75s;
|
||||
}
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: rgb(6, 25, 28);
|
||||
background-image: url("~/assets/images/sky.png");
|
||||
background-attachment: fixed;
|
||||
background-size: cover;
|
||||
background-blend-mode: multiply;
|
||||
image-rendering: pixelated;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
image-rendering: pixelated;
|
||||
color: white;
|
||||
font-family: "Lato", sans-serif;
|
||||
font-size: 18px;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
#ender-app {
|
||||
height: 100%;
|
||||
image-rendering: auto;
|
||||
}
|
||||
|
||||
.no-decoration {
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.text-align-center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.font-small {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.enderesque {
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.link {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.link:hover {
|
||||
color: cornflowerblue;
|
||||
}
|
||||
|
||||
.radial-gradient {
|
||||
background: radial-gradient(circle at left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
body {
|
||||
color: black;
|
||||
}
|
||||
.enderesque {
|
||||
background-color: rgba(255, 255, 255, 0.75);
|
||||
}
|
||||
.link:hover {
|
||||
color: darkslateblue;
|
||||
}
|
||||
.radial-gradient {
|
||||
background: radial-gradient(circle at left, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
|
||||
}
|
||||
}
|
||||
@media (max-width: 575px) {
|
||||
.enderesque {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
@media (min-width: 576px) {
|
||||
.enderesque {
|
||||
width: 80%;
|
||||
}
|
||||
.rounded-card {
|
||||
border-radius: 1em;
|
||||
}
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.enderesque {
|
||||
width: 60%;
|
||||
}
|
||||
}
|
||||
@media (min-width: 992px) {
|
||||
.enderesque {
|
||||
width: 60%;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.enderesque {
|
||||
width: 60%;
|
||||
}
|
||||
}
|
||||
@media (min-width: 2000px) {
|
||||
.enderesque {
|
||||
width: 40%;
|
||||
}
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=main.css.map */
|
||||
|
||||
@@ -1 +1 @@
|
||||
{"version":3,"sourceRoot":"","sources":["main.scss"],"names":[],"mappings":"AAAA;EACE;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;EACA;EACA","file":"main.css"}
|
||||
{"version":3,"sourceRoot":"","sources":["main.scss","transition.scss"],"names":[],"mappings":"AACQ;AACA;AAGA;AAEA;ACNN;EAEE;;AAGF;EAEE;EACA;;;ADCJ;EACE;;;AAIF;EACE;;;AAIF;EACE;EACA;EAEA;EACA;EACA;EACA;EAEA;EAEA;EACA;EACA;EAEA;;;AAIF;EACE;EAEA;;;AAIF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAIF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAQF;EACE;IACE;;EAGF;IACE;;EAGF;IACE;;EAGF;IACE;;;AAUJ;EACE;IACE;;;AAIJ;EACE;IACE;;EAGF;IACE;;;AAIJ;EACE;IACE;;;AAIJ;EACE;IACE;;;AAIJ;EACE;IACE;;;AAIJ;EACE;IACE","file":"main.css"}
|
||||
+133
-3
@@ -1,14 +1,144 @@
|
||||
// Fonts.
|
||||
@import '@fontsource/Lato/index.css';
|
||||
@import '@fontsource/Alexandria/700.css';
|
||||
|
||||
// Bootstrap & animations.
|
||||
@import 'bootstrap/dist/css/bootstrap.css';
|
||||
@import 'transition.scss';
|
||||
@import 'animate.css';
|
||||
|
||||
// CSS Variables.
|
||||
:root {
|
||||
--animate-delay: 0.75s;
|
||||
}
|
||||
|
||||
// The HTML page.
|
||||
html {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
// The body element.
|
||||
body {
|
||||
background-color: rgb(6, 25, 28);
|
||||
background-image: url('~/assets/images/sky.png');
|
||||
background-attachment: fixed;
|
||||
|
||||
background-size: cover;
|
||||
background-attachment: fixed;
|
||||
background-blend-mode: multiply;
|
||||
image-rendering: pixelated;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
|
||||
image-rendering: pixelated;
|
||||
|
||||
color: white;
|
||||
font-family: 'Lato', sans-serif;
|
||||
font-size: 18px;
|
||||
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
// Entry point (Vue mount).
|
||||
#ender-app {
|
||||
height: 100%;
|
||||
|
||||
image-rendering: auto;
|
||||
}
|
||||
|
||||
// Helper classes that don't exist in Bootstrap.
|
||||
.no-decoration {
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.text-align-center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.font-small {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
// Query-overridable classes.
|
||||
.enderesque {
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.link {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.link:hover {
|
||||
color: cornflowerblue;
|
||||
}
|
||||
|
||||
.radial-gradient {
|
||||
background: radial-gradient(
|
||||
circle at left,
|
||||
rgba(255, 255, 255, 0.8),
|
||||
rgba(255, 255, 255, 0.75),
|
||||
rgba(255, 255, 255, 0)
|
||||
);
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
body {
|
||||
color: black;
|
||||
}
|
||||
|
||||
.enderesque {
|
||||
background-color: rgba(255, 255, 255, 0.75);
|
||||
}
|
||||
|
||||
.link:hover {
|
||||
color: darkslateblue;
|
||||
}
|
||||
|
||||
.radial-gradient {
|
||||
background: radial-gradient(
|
||||
circle at left,
|
||||
rgba(0, 0, 0, 0.95),
|
||||
rgba(0, 0, 0, 0.8),
|
||||
rgba(0, 0, 0, 0)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
// Dimensions.
|
||||
@media (max-width: 575px) {
|
||||
.enderesque {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 576px) {
|
||||
.enderesque {
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
.rounded-card {
|
||||
border-radius: 1em;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.enderesque {
|
||||
width: 60%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
.enderesque {
|
||||
width: 60%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
.enderesque {
|
||||
width: 60%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 2000px) {
|
||||
.enderesque {
|
||||
width: 40%;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
.page-enter-active, .page-leave-active {
|
||||
transition: all 0.4s;
|
||||
}
|
||||
.page-enter-from, .page-leave-to {
|
||||
opacity: 0;
|
||||
filter: blur(1rem);
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=transition.css.map */
|
||||
@@ -0,0 +1 @@
|
||||
{"version":3,"sourceRoot":"","sources":["transition.scss"],"names":[],"mappings":"AACE;EAEE;;AAGF;EAEE;EACA","file":"transition.css"}
|
||||
@@ -0,0 +1,12 @@
|
||||
.page {
|
||||
&-enter-active,
|
||||
&-leave-active {
|
||||
transition: all 0.4s;
|
||||
}
|
||||
|
||||
&-enter-from,
|
||||
&-leave-to {
|
||||
opacity: 0;
|
||||
filter: blur(1rem);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user