Update
This commit is contained in:
532
Server/public/css/common.css
Normal file
532
Server/public/css/common.css
Normal file
@@ -0,0 +1,532 @@
|
||||
|
||||
:root {
|
||||
--light-blue:hsl(195, 67%, 95%);
|
||||
--darker-pink:hsl(344, 60%, 47%);
|
||||
--pink:hsl(344, 73%, 57%);
|
||||
--dark-green:hsl(176, 63%, 25%);
|
||||
--green:hsl(147, 33%, 60%);
|
||||
--orange:hsl(30, 97%, 72%);
|
||||
--light-orange: hsl(19, 76%, 72%);
|
||||
--dark-brown:hsl(23, 47%, 20%);
|
||||
--brown:hsl(23, 47%, 30%);
|
||||
--light-brown: hsl(23, 47%, 50%);
|
||||
--dark-pink:hsl(343, 39%, 16%);
|
||||
--red:hsl(359, 72%, 61%);
|
||||
--dark-blue:hsl(217, 25%, 16%);
|
||||
--grey-blue:hsl(223, 13%, 22%);
|
||||
--cream:hsl(34, 43%, 90%);
|
||||
--dark-cream:hsl(33, 26%, 84%);
|
||||
--sans-serif: "Space Grotesk";
|
||||
--serif: "DejaVu";
|
||||
}
|
||||
|
||||
svg {
|
||||
width: auto;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
:not(svg *) {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
border: none;
|
||||
font-size: 0;
|
||||
}
|
||||
|
||||
html {
|
||||
overflow-x: hidden;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
body {
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
max-width: 100vw;
|
||||
overflow: hidden;
|
||||
background: white;
|
||||
}
|
||||
|
||||
#content {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
height: 100%;
|
||||
min-height: 100vh;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
/*---Fonts---------------------------------------------------------*/
|
||||
|
||||
@font-face {
|
||||
font-family: 'Space Grotesk';
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
src: /*local('Space Grotesk Light'),
|
||||
local('SpaceGroteskLight-Regular'),
|
||||
local('Space Grotesk Light Regular'), */
|
||||
url('/fonts/SpaceGrotesk/SpaceGrotesk.woff2') format('woff2'),
|
||||
url('/fonts/SpaceGrotesk/SpaceGrotesk.woff') format('woff');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'DejaVu';
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
src: /*local('DejaVuLGCSerif'),
|
||||
local('DejaVu LGC Serif'), */
|
||||
url('/fonts/DejaVu/DejaVuLGCSerif.woff2') format('woff2'),
|
||||
url('/fonts/DejaVu/DejaVuLGCSerif.woff') format('woff');
|
||||
}
|
||||
|
||||
.serif {
|
||||
font-family: var(--serif)
|
||||
}
|
||||
|
||||
.sans-serif {
|
||||
font-family: var(--sans-serif)
|
||||
}
|
||||
|
||||
|
||||
/*---Text related------------------------------------------------------------------------------*/
|
||||
|
||||
b {
|
||||
font-family: inherit;
|
||||
font-size: inherit;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-family: var(--sans-serif, sans-serif);
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 2rem;
|
||||
font-family: var(--sans-serif, sans-serif);
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-family: var(--sans-serif, sans-serif);
|
||||
font-size: 1.6rem
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-family: var(--sans-serif, sans-serif);
|
||||
font-size: 1.4rem
|
||||
}
|
||||
|
||||
span {
|
||||
font-family: var(--serif, serif);
|
||||
font-size: 1.3rem;
|
||||
height: auto;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
p {
|
||||
font-family: var(--serif, serif);
|
||||
font-size: 1.2rem;
|
||||
line-height: 170%;
|
||||
}
|
||||
|
||||
b,i,s {
|
||||
font-family: inherit;
|
||||
font-size: inherit;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
label {
|
||||
font-family: var(--serif, serif);
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
sup {
|
||||
vertical-align: top;
|
||||
position: relative;
|
||||
top: -0.682rem;
|
||||
}
|
||||
|
||||
sub {
|
||||
vertical-align: top;
|
||||
position: relative;
|
||||
top: 0.34rem;
|
||||
}
|
||||
|
||||
|
||||
a {
|
||||
font-family: var(--serif, serif);
|
||||
font-size: 1.638rem;
|
||||
color: black;
|
||||
}
|
||||
|
||||
a:link { text-decoration: none; }
|
||||
|
||||
a:visited { text-decoration: none; }
|
||||
|
||||
a:hover { text-decoration: none; }
|
||||
|
||||
a:active { text-decoration: none; }
|
||||
|
||||
a:focus { text-decoration: none; }
|
||||
|
||||
.justify {
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
.center {
|
||||
width: 100%;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.left {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.bold {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.margin-end {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.margin-end2 {
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.text p, .text li {
|
||||
font-size: 1.2rem;
|
||||
font-family: var(--serif);
|
||||
line-height: 170%;
|
||||
}
|
||||
|
||||
.text li {
|
||||
margin-left: 1.5rem;
|
||||
margin-bottom: 0.5rem;
|
||||
line-height: 140%;
|
||||
}
|
||||
|
||||
.text ul p {
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
.text h2 {
|
||||
width: max-content;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
margin: auto;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.title-highlight {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.title-highlight::before {
|
||||
position: absolute;
|
||||
margin-left: -0.68rem;
|
||||
margin-top: -0.14rem;
|
||||
width: 2.5rem;
|
||||
height: 0rem;
|
||||
content: "";
|
||||
border-left: 0.19rem solid var(--pink);
|
||||
border-top: 0.19rem solid var(--pink);
|
||||
border-radius: 1rem;
|
||||
}
|
||||
|
||||
.title-highlight::after {
|
||||
position: absolute;
|
||||
left:0;
|
||||
top: 0;
|
||||
margin-left: -0.68rem;
|
||||
margin-top: -0.14rem;
|
||||
width: 0rem;
|
||||
height: 1.7rem;
|
||||
content: "";
|
||||
border-left: 0.19rem solid var(--pink);
|
||||
border-top: 0.19rem solid var(--pink);
|
||||
border-radius: 1rem;
|
||||
}
|
||||
|
||||
.text h3 {
|
||||
margin-top: 1rem;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.text h4 {
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.text p {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.text ul>ul>li {
|
||||
margin-left: 2.5rem;
|
||||
margin-bottom: 0.5rem;
|
||||
line-height: 140%;
|
||||
}
|
||||
|
||||
/*---Button/input related--------------------------------------------------------------*/
|
||||
|
||||
button {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
button {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
button:focus {
|
||||
outline:0;
|
||||
}
|
||||
|
||||
|
||||
input[type="text"],input[type="email"],input[type="password"],input[type="number"] {
|
||||
font-family: var(--serif, serif);
|
||||
background-color: white;
|
||||
border-radius: 0.4rem;
|
||||
border-color: black;
|
||||
border: black solid 0.063rem;
|
||||
padding-left: 0.5rem;
|
||||
font: 1.3rem var(--serif, serif);
|
||||
}
|
||||
|
||||
input[type="text"] {
|
||||
-webkit-appearance: textfield;
|
||||
-moz-appearance: textfield;
|
||||
appearance: textfield;
|
||||
color: #353535;
|
||||
}
|
||||
|
||||
input[type="email"] {
|
||||
-webkit-appearance: textfield;
|
||||
-moz-appearance: textfield;
|
||||
appearance: textfield;
|
||||
font-weight: normal;
|
||||
color: #353535;
|
||||
height: 2.7rem;
|
||||
padding-left: 0.34rem;
|
||||
}
|
||||
|
||||
input[type="password"] {
|
||||
padding-left: 0.34rem;
|
||||
-webkit-appearance: textfield;
|
||||
-moz-appearance: textfield;
|
||||
appearance: textfield;
|
||||
font-weight: normal;
|
||||
color: #353535;
|
||||
}
|
||||
|
||||
input[type="number"] {
|
||||
-webkit-appearance: textfield;
|
||||
-moz-appearance: textfield;
|
||||
appearance: textfield;
|
||||
color: #353535;
|
||||
}
|
||||
|
||||
input[type=number]::-webkit-inner-spin-button,
|
||||
input[type=number]::-webkit-outer-spin-button {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
/*---Scroll button---------------------------------------------------------------------*/
|
||||
|
||||
.scroll-button {
|
||||
cursor: pointer;
|
||||
background-color: #EBF7FB;
|
||||
border-color: #EBF7FB;
|
||||
height: 3.822rem;
|
||||
width: 3.822rem;
|
||||
border-radius: 3.822rem;
|
||||
border: 0;
|
||||
margin: 0;
|
||||
padding-top: 0.505rem;
|
||||
}
|
||||
|
||||
.scroll-button img {
|
||||
width: 1.9rem;
|
||||
padding-bottom: 0.4rem;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.next {
|
||||
padding-left: 0.382rem;
|
||||
}
|
||||
|
||||
.prev {
|
||||
padding-right: 0.382rem;
|
||||
}
|
||||
|
||||
|
||||
/*---Grid related----------------------------------------------------------------------*/
|
||||
|
||||
.column {
|
||||
display: grid;
|
||||
grid-auto-flow: column
|
||||
}
|
||||
|
||||
.center-items {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
|
||||
/*---Fillers-------------------------------------------------------------------------*/
|
||||
|
||||
.filler1 {
|
||||
width: 100%;
|
||||
height: 0.655rem;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.filler2 {
|
||||
width: 100%;
|
||||
height: 1.263rem;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.filler3 {
|
||||
width: 100%;
|
||||
height: 2.525rem;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.filler4 {
|
||||
width: 100%;
|
||||
height: 3.822rem;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.filler5 {
|
||||
width: 100%;
|
||||
height: 5.05rem;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.filler6 {
|
||||
width: 100%;
|
||||
height: 6.347rem;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
|
||||
/*---Margins------------------------------------------------------------------------*/
|
||||
|
||||
.bmargin1 {
|
||||
margin-bottom: 0.5rem
|
||||
}
|
||||
|
||||
.bmargin2 {
|
||||
margin-bottom: 1rem
|
||||
}
|
||||
|
||||
.bmargin3 {
|
||||
margin-bottom: 1.5rem
|
||||
}
|
||||
|
||||
.tmargin1 {
|
||||
margin-top: 0.5rem
|
||||
}
|
||||
|
||||
.tmargin2 {
|
||||
margin-top: 1rem
|
||||
}
|
||||
|
||||
.tmargin3 {
|
||||
margin-top: 1.5rem
|
||||
}
|
||||
|
||||
|
||||
/*---Other-------------------------------------------------------------------------*/
|
||||
|
||||
.flex-column {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.flex-row {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.pane {
|
||||
background: white;
|
||||
border: 0;
|
||||
border-radius: 0.635rem;
|
||||
box-shadow: 0 0 0.314rem rgb(187, 187, 187);
|
||||
}
|
||||
|
||||
.pane-container {
|
||||
margin-top: min(3vw, 1rem);
|
||||
margin-bottom: 3.1rem;
|
||||
display: grid;
|
||||
grid-auto-flow: column;
|
||||
column-gap: 5rem;
|
||||
}
|
||||
|
||||
.pane-centering {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.main-pane {
|
||||
position: relative;
|
||||
margin: auto;
|
||||
height: min-content;
|
||||
max-width: 66rem;
|
||||
width: 66rem;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.clicked {
|
||||
background-color: hsla(344, 73%, 57%, 0.25);
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1117px) {
|
||||
.main-pane {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/*---Scaling-----------------------------------------------------------------------*/
|
||||
|
||||
html {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 660px) {
|
||||
html {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 570px) {
|
||||
html {
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 470px) {
|
||||
html {
|
||||
font-size: 11px;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 400px) {
|
||||
html {
|
||||
font-size: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 360px) {
|
||||
html {
|
||||
font-size: 9px;
|
||||
}
|
||||
}
|
177
Server/public/css/footer.css
Normal file
177
Server/public/css/footer.css
Normal file
@@ -0,0 +1,177 @@
|
||||
/*---Footer----------------------------------------------------*/
|
||||
|
||||
footer {
|
||||
position: relative;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
background: var(--dark-green);
|
||||
}
|
||||
|
||||
footer p, footer a {
|
||||
font-family: var(--sans-serif);
|
||||
}
|
||||
|
||||
#footer-content-container {
|
||||
position: relative;
|
||||
margin: auto;
|
||||
padding-top: 2rem;
|
||||
max-width: 116rem;
|
||||
width: 97vw;
|
||||
}
|
||||
|
||||
#footer-grid-content-container {
|
||||
display: grid;
|
||||
margin-left: 2rem;
|
||||
margin-right: 2rem;
|
||||
margin-bottom: 1.4rem;
|
||||
}
|
||||
|
||||
.not-logged {
|
||||
grid-template-columns: auto auto auto 2rem;
|
||||
}
|
||||
|
||||
.logged {
|
||||
grid-template-columns: auto auto 2rem;
|
||||
}
|
||||
|
||||
footer h2 {
|
||||
color: #ffffff;
|
||||
font-size: 1.4rem;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
#footer-copyright {
|
||||
position: relative;
|
||||
color: #ffffff;
|
||||
margin-left: 2rem;
|
||||
bottom: 0rem;
|
||||
font-weight: 400;
|
||||
font-size: 1.2rem;
|
||||
height: 3rem;
|
||||
top: 0rem;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
footer a {
|
||||
font-size: 1.2rem;
|
||||
color: #d8d8d8;
|
||||
}
|
||||
|
||||
footer p, footer label {
|
||||
display: block;
|
||||
font-size: 1.2rem;
|
||||
color: #d8d8d8;
|
||||
font-family: var(--sans-serif,sans-serif);
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
#newsletter-container h3 {
|
||||
margin-bottom: 0.99rem;
|
||||
}
|
||||
|
||||
#newsletter-container p {
|
||||
width: 28.665rem;
|
||||
margin-bottom: 0.48rem;
|
||||
}
|
||||
|
||||
#newsletterEmailInput {
|
||||
height: 2.5rem;
|
||||
width: 20.5rem;
|
||||
border: 0;
|
||||
border-radius: 0.4rem 0 0 0.4rem;
|
||||
filter: drop-shadow( 0.07rem 0.14rem 0.07rem rgb(0 0 0 / 0.4));
|
||||
}
|
||||
|
||||
#newsletterEmailInput::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
|
||||
color: var(--c,gray);
|
||||
opacity: 1; /* Firefox */
|
||||
}
|
||||
|
||||
#newsletterEmailButton {
|
||||
position: absolute;
|
||||
width: 6.8rem;
|
||||
height: 2.5rem;
|
||||
background: var(--pink);
|
||||
color: #ffffff;
|
||||
font-family: var(--sans-serif,sans-serif);
|
||||
font-size: 1.4rem;
|
||||
border-radius: 0 0.2rem 0.2rem 0;
|
||||
filter: drop-shadow( 0.07rem 0.14rem 0.07rem rgb(0 0 0 / 0.4));
|
||||
}
|
||||
|
||||
#newsletterEmailButton:active {
|
||||
background: var(--darker-pink);
|
||||
}
|
||||
|
||||
#contact-us-container {
|
||||
width: 14rem;
|
||||
}
|
||||
|
||||
#contact-us-container h3 {
|
||||
margin-bottom: 0.99rem;
|
||||
}
|
||||
|
||||
#legal-info-container {
|
||||
width: 9.6rem;
|
||||
}
|
||||
|
||||
#legal-info-container h3 {
|
||||
margin-bottom: 0.99rem;
|
||||
}
|
||||
|
||||
#legal-info-container p {
|
||||
margin-bottom: 0.48rem;
|
||||
}
|
||||
|
||||
#legal-info-container a {
|
||||
display: block;
|
||||
margin-bottom: 0.48rem;
|
||||
}
|
||||
|
||||
|
||||
#footer-up {
|
||||
position: absolute;
|
||||
width: 4.8rem;
|
||||
height: 4.8rem;
|
||||
border-radius: 3.4rem;
|
||||
top: 4rem;
|
||||
right: 2rem;
|
||||
background: #ffffff;
|
||||
}
|
||||
|
||||
#footer-up svg {
|
||||
width: 40%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.grass{
|
||||
position: absolute;
|
||||
top: -3.8rem;
|
||||
--height: 3.82rem;
|
||||
filter: drop-shadow( 0.07rem 0.14rem 0.07rem rgb(0 0 0 / 0.4));
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1170px) {
|
||||
.not-logged {
|
||||
grid-template-rows: auto auto auto auto;
|
||||
grid-template-columns: auto;
|
||||
row-gap: 2rem;
|
||||
}
|
||||
|
||||
.logged {
|
||||
grid-template-rows: auto auto auto;
|
||||
grid-template-columns: auto;
|
||||
row-gap: 2rem;
|
||||
}
|
||||
|
||||
#footer-copyright {
|
||||
height: 1rem;
|
||||
top: -2rem;
|
||||
}
|
||||
|
||||
#newsletterEmailInput {
|
||||
width: 18rem;
|
||||
}
|
||||
}
|
0
Server/public/css/genie/.autoload_ignore
Normal file
0
Server/public/css/genie/.autoload_ignore
Normal file
5
Server/public/css/genie/bootstrap.min.css
vendored
Normal file
5
Server/public/css/genie/bootstrap.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
126
Server/public/css/genie/prism.css
Normal file
126
Server/public/css/genie/prism.css
Normal file
@@ -0,0 +1,126 @@
|
||||
/* PrismJS 1.17.1
|
||||
https://prismjs.com/download.html#themes=prism-okaidia&languages=julia */
|
||||
/**
|
||||
* okaidia theme for JavaScript, CSS and HTML
|
||||
* Loosely based on Monokai textmate theme by http://www.monokai.nl/
|
||||
* @author ocodia
|
||||
*/
|
||||
|
||||
code[class*="language-"],
|
||||
pre[class*="language-"] {
|
||||
color: #f8f8f2;
|
||||
background: none;
|
||||
text-shadow: 0 1px rgba(0, 0, 0, 0.3);
|
||||
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
||||
font-size: 1em;
|
||||
text-align: left;
|
||||
white-space: pre;
|
||||
word-spacing: normal;
|
||||
word-break: normal;
|
||||
word-wrap: normal;
|
||||
line-height: 1.5;
|
||||
|
||||
-moz-tab-size: 4;
|
||||
-o-tab-size: 4;
|
||||
tab-size: 4;
|
||||
|
||||
-webkit-hyphens: none;
|
||||
-moz-hyphens: none;
|
||||
-ms-hyphens: none;
|
||||
hyphens: none;
|
||||
}
|
||||
|
||||
/* Code blocks */
|
||||
pre[class*="language-"] {
|
||||
padding: 1em;
|
||||
margin: .5em 0;
|
||||
overflow: auto;
|
||||
border-radius: 0.3em;
|
||||
}
|
||||
|
||||
:not(pre) > code[class*="language-"],
|
||||
pre[class*="language-"] {
|
||||
background: #272822;
|
||||
}
|
||||
|
||||
/* Inline code */
|
||||
:not(pre) > code[class*="language-"] {
|
||||
padding: .1em;
|
||||
border-radius: .3em;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
.token.comment,
|
||||
.token.prolog,
|
||||
.token.doctype,
|
||||
.token.cdata {
|
||||
color: slategray;
|
||||
}
|
||||
|
||||
.token.punctuation {
|
||||
color: #f8f8f2;
|
||||
}
|
||||
|
||||
.namespace {
|
||||
opacity: .7;
|
||||
}
|
||||
|
||||
.token.property,
|
||||
.token.tag,
|
||||
.token.constant,
|
||||
.token.symbol,
|
||||
.token.deleted {
|
||||
color: #f92672;
|
||||
}
|
||||
|
||||
.token.boolean,
|
||||
.token.number {
|
||||
color: #ae81ff;
|
||||
}
|
||||
|
||||
.token.selector,
|
||||
.token.attr-name,
|
||||
.token.string,
|
||||
.token.char,
|
||||
.token.builtin,
|
||||
.token.inserted {
|
||||
color: #a6e22e;
|
||||
}
|
||||
|
||||
.token.operator,
|
||||
.token.entity,
|
||||
.token.url,
|
||||
.language-css .token.string,
|
||||
.style .token.string,
|
||||
.token.variable {
|
||||
color: #f8f8f2;
|
||||
}
|
||||
|
||||
.token.atrule,
|
||||
.token.attr-value,
|
||||
.token.function,
|
||||
.token.class-name {
|
||||
color: #e6db74;
|
||||
}
|
||||
|
||||
.token.keyword {
|
||||
color: #66d9ef;
|
||||
}
|
||||
|
||||
.token.regex,
|
||||
.token.important {
|
||||
color: #fd971f;
|
||||
}
|
||||
|
||||
.token.important,
|
||||
.token.bold {
|
||||
font-weight: bold;
|
||||
}
|
||||
.token.italic {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.token.entity {
|
||||
cursor: help;
|
||||
}
|
||||
|
365
Server/public/css/genie/style.css
Normal file
365
Server/public/css/genie/style.css
Normal file
@@ -0,0 +1,365 @@
|
||||
body {
|
||||
font-family: sans-serif;
|
||||
color: #404142;
|
||||
font-size: 16px;
|
||||
letter-spacing: 0.8px;
|
||||
}
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-weight: 200;
|
||||
}
|
||||
ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
a {
|
||||
-webkit-transition: all 0.3s;
|
||||
-moz-transition: all 0.3s;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
a:hover, a:focus, a:active, a:visited {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* Buttons override */
|
||||
.btn {
|
||||
text-transform: uppercase;
|
||||
font-weight: 600;
|
||||
}
|
||||
.btn-lg {
|
||||
padding: 15px 40px;
|
||||
font-size: 16px;
|
||||
line-height: none;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.btn-red {
|
||||
background-color: #dd5138;
|
||||
color: #fff;
|
||||
}
|
||||
.btn-yellow {
|
||||
background-color: #fcd93b;
|
||||
color: #2a2a2a;
|
||||
opacity: 0.8;
|
||||
}
|
||||
.btn-yellow:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
.btn-yellow.disabled:hover,
|
||||
.btn-yellow[disabled]:hover {
|
||||
opacity: 0.65;
|
||||
}
|
||||
.content-ct {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* ------------------
|
||||
Navigation
|
||||
------------------ */
|
||||
.side-menu {
|
||||
position: fixed;
|
||||
right: 30px;
|
||||
top: 50%;
|
||||
transform: translateY(-73px);
|
||||
z-index: 99;
|
||||
}
|
||||
.side-menu ul li {
|
||||
text-align: right;
|
||||
margin: 10px 0;
|
||||
}
|
||||
.side-menu ul li a span {
|
||||
display: inline-block;
|
||||
}
|
||||
.side-menu ul li a span.menu-title {
|
||||
color: #fff;
|
||||
position: relative;
|
||||
margin-right: 10px;
|
||||
text-transform: uppercase;
|
||||
font-size: 12px;
|
||||
background-color: #dd5138;
|
||||
padding: 3px 10px;
|
||||
font-weight: 600;
|
||||
border-radius: 3px;
|
||||
-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
|
||||
-moz-transition: -moz-transform 0.2s, opacity 0.2s;
|
||||
transition: transform 0.2s, opacity 0.2s;
|
||||
-webkit-transform-origin: 100% 50%;
|
||||
-moz-transform-origin: 100% 50%;
|
||||
-ms-transform-origin: 100% 50%;
|
||||
-o-transform-origin: 100% 50%;
|
||||
transform-origin: 100% 50%;
|
||||
opacity: 0;
|
||||
}
|
||||
.side-menu ul li a:hover span.menu-title {
|
||||
opacity: 1;
|
||||
}
|
||||
.side-menu ul li a span.dot {
|
||||
position: relative;
|
||||
background-color: #dd5138;
|
||||
border-radius: 2em;
|
||||
height: 10px;
|
||||
width: 10px;
|
||||
-webkit-transition: all 0.3s;
|
||||
-moz-transition: all 0.3s;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
.side-menu ul li a:hover span.dot {
|
||||
transform: scale(1.8);
|
||||
}
|
||||
|
||||
|
||||
.hero-header {
|
||||
background: #aa7ab6;
|
||||
min-height: 600px;
|
||||
padding: 5em;
|
||||
color: #fff;
|
||||
}
|
||||
.hero-header h1 {
|
||||
margin: 1em 0 0 0;
|
||||
}
|
||||
.hero-header h4 {
|
||||
font-weight: normal;
|
||||
opacity: 0.6;
|
||||
letter-spacing: 1px;
|
||||
margin: 2em 0;
|
||||
}
|
||||
.hero-header .logo {
|
||||
max-width: 200px;
|
||||
}
|
||||
.hero-header .btn {
|
||||
margin-top: 3em;
|
||||
}
|
||||
.hero-header .rocket {
|
||||
max-width: 100%;
|
||||
}
|
||||
.me-row {
|
||||
padding: 30px 0;
|
||||
}
|
||||
.row-title {
|
||||
font-weight: 400;
|
||||
}
|
||||
.feature {
|
||||
padding: 20px;
|
||||
margin-top: 30px;
|
||||
}
|
||||
.feature span {
|
||||
/* font-size: 5em; */
|
||||
color: #016cc7;
|
||||
}
|
||||
|
||||
.feature.feature-icon {
|
||||
font-size: 5em;
|
||||
}
|
||||
|
||||
.speaker .feature {
|
||||
width: 31.333333%;
|
||||
-webkit-transition: all 0.3s;
|
||||
-moz-transition: all 0.3s;
|
||||
transition: all 0.3s;
|
||||
margin-right: 20px;
|
||||
border: 3px solid #f6f6f6;
|
||||
border-radius: 5px;
|
||||
}
|
||||
.speaker .feature:hover {
|
||||
box-shadow: 3px 3px 10px #ccc;
|
||||
transform: translateY(-10px);
|
||||
}
|
||||
.speaker-img {
|
||||
max-width: 40%;
|
||||
border: 4px solid #efefef;
|
||||
border-radius: 50%;
|
||||
}
|
||||
ul.speaker-social li {
|
||||
list-style: none;
|
||||
display: inline-block;
|
||||
margin: 10px 5px;
|
||||
}
|
||||
ul.speaker-social li a {
|
||||
font-size: 0.2em;
|
||||
padding: 0 10px;
|
||||
}
|
||||
ul.speaker-social li a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
a span.ti-facebook {
|
||||
color: #3b5998;
|
||||
}
|
||||
a span.ti-twitter-alt {
|
||||
color: #4099ff;
|
||||
}
|
||||
|
||||
.tickets {
|
||||
background-color: #fcd93b;
|
||||
}
|
||||
.tickets .price {
|
||||
font-size: 4em;
|
||||
color: #dd5138;
|
||||
font-weight: 100;
|
||||
}
|
||||
.tickets .price sup {
|
||||
font-size: 0.4em;
|
||||
}
|
||||
|
||||
|
||||
.nav-tabs {
|
||||
margin-top: 20px;
|
||||
}
|
||||
.schedule .media {
|
||||
margin-top: 4em;
|
||||
}
|
||||
.schedule .media-object {
|
||||
max-width: 100px;
|
||||
}
|
||||
.schedule .media-heading {
|
||||
font-weight: 600;
|
||||
border-bottom: 2px solid #efefef;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
.schedule .media-body h5 {
|
||||
text-transform: uppercase;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
|
||||
.footer {
|
||||
background-color: #2a2a2a;
|
||||
margin-top: 30px;
|
||||
color: #fff;
|
||||
}
|
||||
.footer p {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.footer-credit {
|
||||
padding: 40px;
|
||||
}
|
||||
ul.footer-menu {
|
||||
text-align: right;
|
||||
}
|
||||
ul.footer-menu li {
|
||||
display: inline-block;
|
||||
}
|
||||
ul.footer-menu li a {
|
||||
font-size: 12px;
|
||||
color: #fcd93b;
|
||||
padding-right: 20px;
|
||||
}
|
||||
ul.footer-menu li a:hover {
|
||||
color: #dd5138;
|
||||
}
|
||||
|
||||
|
||||
.contact {
|
||||
background-color: #3a3a3a;
|
||||
color: #fff;
|
||||
padding: 1em;
|
||||
}
|
||||
.contact h3 {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.form-control {
|
||||
padding: 20px 15px;
|
||||
border: 3px solid #eee;
|
||||
background-color: #f9f9f9;
|
||||
box-shadow: none;
|
||||
}
|
||||
.help-block {
|
||||
font-size: 12px;
|
||||
}
|
||||
.form-control-feedback {
|
||||
top: 15px;
|
||||
right: 15px;
|
||||
}
|
||||
|
||||
.animated {
|
||||
-webkit-animation-duration: 5s;
|
||||
animation-duration: 5s;
|
||||
-webkit-animation-fill-mode: both;
|
||||
animation-fill-mode: both;
|
||||
-webkit-animation-timing-function: linear;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count:infinite;
|
||||
-webkit-animation-iteration-count:infinite;
|
||||
}
|
||||
|
||||
@-webkit-keyframes bounce {
|
||||
0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}
|
||||
40% {-webkit-transform: translateY(-30px);}
|
||||
60% {-webkit-transform: translateY(-15px);}
|
||||
}
|
||||
|
||||
@keyframes bounce {
|
||||
0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
|
||||
40% {transform: translateY(-30px);}
|
||||
60% {transform: translateY(-15px);}
|
||||
}
|
||||
|
||||
.bounce {
|
||||
-webkit-animation-name: bounce;
|
||||
animation-name: bounce;
|
||||
}
|
||||
|
||||
/* ========================================
|
||||
Custom Media Queries
|
||||
======================================== */
|
||||
|
||||
/* Mobile */
|
||||
|
||||
@media (max-width: 767px) {
|
||||
.hero-header {
|
||||
padding: 3em 1em 1em 1em;
|
||||
text-align: center;
|
||||
max-height: 550px;
|
||||
}
|
||||
.speaker .feature {
|
||||
width: 100%
|
||||
}
|
||||
.footer-credit {
|
||||
text-align: center;
|
||||
padding: 40px 20px;
|
||||
}
|
||||
ul.footer-menu {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* iPad Portrait */
|
||||
|
||||
@media (min-width: 768px) and (max-width: 991px) {
|
||||
.hero-header {
|
||||
padding: 3em 1em 1em 1em;
|
||||
text-align: center;
|
||||
}
|
||||
.speaker .feature {
|
||||
width: 49%;
|
||||
margin-right: 7px;
|
||||
}
|
||||
ul.footer-menu {
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* iPad Landscape */
|
||||
|
||||
@media (min-width: 992px) and (max-width: 1199px) {
|
||||
.speaker .feature {
|
||||
width: 49%;
|
||||
margin-right: 9px;
|
||||
}
|
||||
}
|
||||
|
||||
#main-heading {
|
||||
font-size: 62px;
|
||||
font-weight: 500;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#nav-bar-logo {
|
||||
margin-top: -8px;
|
||||
width: 40px;
|
||||
}
|
||||
|
||||
#home {
|
||||
padding-bottom: 2em;
|
||||
}
|
0
Server/public/css/landing.css
Normal file
0
Server/public/css/landing.css
Normal file
200
Server/public/css/navbar.css
Normal file
200
Server/public/css/navbar.css
Normal file
@@ -0,0 +1,200 @@
|
||||
|
||||
/* Header */
|
||||
#navbar{
|
||||
position: relative;
|
||||
top: 0;
|
||||
width: min(100%,116rem);
|
||||
z-index: 1000;
|
||||
height: 5.26rem;
|
||||
}
|
||||
|
||||
#navbar * {
|
||||
font-family: var(--sans-serif, sans-serif);
|
||||
}
|
||||
|
||||
/* Logo */
|
||||
#logo-container {
|
||||
display: flex;
|
||||
position: absolute;
|
||||
margin-left: 1rem;
|
||||
height: 100%;
|
||||
max-height: 5.26rem;
|
||||
color: black;
|
||||
z-index: 1;
|
||||
flex-direction: row;
|
||||
flex-wrap: nowrap;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
#navbar-logo {
|
||||
width: 3.16rem;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
#navbar-logo-text {
|
||||
position: relative;
|
||||
width: auto;
|
||||
height: 100%;
|
||||
line-height: 400%;
|
||||
white-space: nowrap;
|
||||
text-align: center;
|
||||
font-size: 1.4rem;
|
||||
color: #292222;
|
||||
font-family: var(--sans-serif, sans-serif);
|
||||
font-weight: 400;
|
||||
padding-left: 1.2rem;
|
||||
}
|
||||
|
||||
/* Nav menu */
|
||||
#nav {
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: white;
|
||||
overflow: hidden;
|
||||
z-index: 0;
|
||||
}
|
||||
#menu a{
|
||||
display: block;
|
||||
padding: 1.9rem;
|
||||
color: black;
|
||||
font-size: 1.4rem;
|
||||
}
|
||||
#menu a:hover {
|
||||
background-color: rgb(220, 220, 220);
|
||||
}
|
||||
|
||||
#menu a:active{
|
||||
background-color: #f7aec0;
|
||||
}
|
||||
|
||||
#nav{
|
||||
max-height: 0;
|
||||
/*transition: max-height .5s ease-out;*/
|
||||
}
|
||||
|
||||
/* Menu Icon */
|
||||
#hamb{
|
||||
position: absolute;
|
||||
cursor: pointer;
|
||||
right: 0rem;
|
||||
padding: 2.8rem 2rem;
|
||||
z-index: 9999;
|
||||
}/* Style label tag */
|
||||
|
||||
#hamb-line {
|
||||
background: black;
|
||||
display: block;
|
||||
height: 2px;
|
||||
position: relative;
|
||||
width: 24px;
|
||||
|
||||
} /* Style span tag */
|
||||
|
||||
#hamb-line::before,
|
||||
#hamb-line::after{
|
||||
background: black;
|
||||
content: '';
|
||||
display: block;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
transition: all .2s ease-out;
|
||||
width: 100%;
|
||||
}
|
||||
#hamb-line::before{
|
||||
top: 5px;
|
||||
}
|
||||
#hamb-line::after{
|
||||
top: -5px;
|
||||
}
|
||||
|
||||
#side-menu {
|
||||
display: none;
|
||||
} /* Hide checkbox */
|
||||
|
||||
/* Toggle menu icon */
|
||||
#side-menu:checked ~ nav {
|
||||
display: block;
|
||||
max-height: 100%;
|
||||
padding-top: 5.625rem;
|
||||
}
|
||||
|
||||
#side-menu:checked ~ #logo-container {
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
#side-menu:checked ~ #hamb {
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
#side-menu:checked ~ #hamb #hamb-line {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
#side-menu:checked ~ #hamb #hamb-line::before {
|
||||
transform: rotate(-45deg);
|
||||
top:0;
|
||||
}
|
||||
|
||||
#side-menu:checked ~ #hamb #hamb-line::after {
|
||||
transform: rotate(45deg);
|
||||
top:0;
|
||||
}
|
||||
|
||||
#cart-icon {
|
||||
height: 1.8rem;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
#menu a:hover div {
|
||||
filter: saturate(50%) brightness(140%);
|
||||
}
|
||||
|
||||
#menu a:hover svg {
|
||||
stroke: rgb(127, 127, 127);;
|
||||
}
|
||||
|
||||
#cart-counter {
|
||||
position: relative;
|
||||
top: -2.8rem;
|
||||
left: 1.6rem;
|
||||
width: 1.3rem;
|
||||
height: 1.3rem;
|
||||
border-radius: 3.4rem;
|
||||
font-family: var(--sans-serif, sans-serif);
|
||||
font-size: 1rem;
|
||||
text-align: center;
|
||||
color: white;
|
||||
background: var(--pink);
|
||||
}
|
||||
|
||||
|
||||
/* Responsiveness */
|
||||
@media only screen and (min-width: 1500px) {
|
||||
|
||||
#navbar{
|
||||
left: 50%;
|
||||
-ms-transform: translateX(-50%);
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
|
||||
#nav{
|
||||
max-height: none;
|
||||
top: 0;
|
||||
position: relative;
|
||||
float: right;
|
||||
width: fit-content;
|
||||
background-color: transparent;
|
||||
}
|
||||
#menu li{
|
||||
float: left;
|
||||
}
|
||||
#menu a:hover{
|
||||
background-color: transparent;
|
||||
color: rgb(127, 127, 127);
|
||||
}
|
||||
|
||||
#hamb{
|
||||
display: none;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user