Updated 38 files via CloudCannon
This commit is contained in:
parent
8bb105500f
commit
36743bfa6d
38 changed files with 340 additions and 24 deletions
|
|
@ -87,7 +87,7 @@ body { height: 100vh; width: 100%; font-family: "Terminus", "Poppins", "Arial",
|
|||
|
||||
.hero .splash { background-color: transparent; display: flex; flex-wrap: wrap; padding: 40px; align-items: flex-start; max-width: var(--max-width); margin: auto; }
|
||||
|
||||
.hero .splash .description { border-radius: var(--border-radius); background: var(--bg-alt); box-shadow: 15px 15px 28px 24px var(--bg-alt); -webkit-box-shadow: 15px 15px 28px 24px var(--bg-alt); -moz-box-shadow: 15px 15px 28px 24px var(--bg-alt); }
|
||||
.hero .splash .description { display: flex; flex-wrap: wrap; border-radius: var(--border-radius); background: var(--bg-alt); box-shadow: 15px 15px 28px 24px var(--bg-alt); -webkit-box-shadow: 15px 15px 28px 24px var(--bg-alt); -moz-box-shadow: 15px 15px 28px 24px var(--bg-alt); }
|
||||
|
||||
.hero .splash .description > * { margin: 40px !important; }
|
||||
|
||||
|
|
@ -95,6 +95,10 @@ body { height: 100vh; width: 100%; font-family: "Terminus", "Poppins", "Arial",
|
|||
|
||||
.hero .splash .description > ul .button { background-image: linear-gradient(228deg, var(--accent1-alt), var(--accent2-alt)); background-size: 400% 400%; -webkit-animation: backgroundBlink 7s ease infinite; -moz-animation: backgroundBlink 7s ease infinite; animation: backgroundBlink 7s ease infinite; width: 100px; height: 100px; line-height: 100px; margin: 0 0 10px 0; padding: 0; font-size: 65px; }
|
||||
|
||||
.hero .splash .description .mauticform_wrapper { width: 200px; }
|
||||
|
||||
.hero .splash .description .mauticform_wrapper .button { border: 0; }
|
||||
|
||||
.hero .splash h1, .hero .splash h2 { font-size: 2em; }
|
||||
|
||||
.hero .splash p, .hero .splash h1, .hero .splash h2, .hero .splash h3, .hero .splash h4 { text-align: left; margin-top: 20px; }
|
||||
|
|
@ -197,6 +201,14 @@ footer .footframe small .label { display: none; }
|
|||
|
||||
@media only screen and (max-width: 720px) { #pleroma .container { width: 100vw; justify-content: center; } #pleroma .container div { flex: 1 1 280px; } }
|
||||
|
||||
.bio { flex-wrap: wrap; }
|
||||
|
||||
.bio .mauticform_wrapper, .bio .mauticform-input { width: calc(100% - 80px); max-width: 480px; margin: 40px auto; }
|
||||
|
||||
.bio .mauticform_wrapper .button, .bio .mauticform-input .button { border: 0; }
|
||||
|
||||
.mautic-focus { font-family: 'Lucida Console', Monaco, monospace; color: #3c2a52; background-color: #3c2a52; }
|
||||
|
||||
h1, h2, h3, h4, h5, h6 { font-family: "Terminus", "Lucida Console", Monaco, monospace; font-weight: 700; }
|
||||
|
||||
h1 { font-size: 2.5em; }
|
||||
|
|
@ -213,7 +225,7 @@ a:hover { color: var(--accent2); text-decoration-style: wavy; text-decoration-co
|
|||
|
||||
.center { text-align: center; }
|
||||
|
||||
.button { background-color: var(--accent2); padding: 1em; margin-bottom: 20px; display: inline-block; border-radius: var(--border-radius); text-align: center; text-decoration: none; text-transform: uppercase; font-weight: 500; color: var(--bg); -webkit-box-shadow: 0px 0px 0px -3px var(--border-alt); -moz-box-shadow: 0px 0px 0px -3px var(--border-alt); box-shadow: 0px 0px 0px -3px var(--border-alt); -webkit-transition: all var(--anim-speed) ease-in-out; -moz-transition: all var(--anim-speed) ease-in-out; -ms-transition: all var(--anim-speed) ease-in-out; transition: all var(--anim-speed) ease-in-out; background-image: linear-gradient(228deg, var(--accent1-alt), var(--accent2-alt)); background-size: 400% 400%; -webkit-animation: backgroundBlink 2s ease infinite; -moz-animation: backgroundBlink 2s ease infinite; animation: backgroundBlink 2s ease infinite; }
|
||||
.button { font-family: "Terminus", "Lucida Console", Monaco, monospace; background-color: var(--accent2); padding: 1em; margin-bottom: 20px; display: inline-block; border-radius: var(--border-radius); text-align: center; text-decoration: none; text-transform: uppercase; font-weight: 500; color: var(--bg); -webkit-box-shadow: 0px 0px 0px -3px var(--border-alt); -moz-box-shadow: 0px 0px 0px -3px var(--border-alt); box-shadow: 0px 0px 0px -3px var(--border-alt); -webkit-transition: all var(--anim-speed) ease-in-out; -moz-transition: all var(--anim-speed) ease-in-out; -ms-transition: all var(--anim-speed) ease-in-out; transition: all var(--anim-speed) ease-in-out; background-image: linear-gradient(228deg, var(--accent1-alt), var(--accent2-alt)); background-size: 400% 400%; -webkit-animation: backgroundBlink 2s ease infinite; -moz-animation: backgroundBlink 2s ease infinite; animation: backgroundBlink 2s ease infinite; }
|
||||
|
||||
.button:hover { background-color: var(--accent1); color: var(--bg); -webkit-box-shadow: 0px 11px 10px -3px var(--border-alt); -moz-box-shadow: 0px 11px 10px -3px var(--border-alt); box-shadow: 0px 11px 10px -3px var(--border-alt); -webkit-transition: all var(--anim-speed) ease-in-out; -moz-transition: all var(--anim-speed) ease-in-out; -ms-transition: all var(--anim-speed) ease-in-out; transition: all var(--anim-speed) ease-in-out; }
|
||||
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -87,7 +87,7 @@ body { height: 100vh; width: 100%; font-family: "Terminus", "Poppins", "Arial",
|
|||
|
||||
.hero .splash { background-color: transparent; display: flex; flex-wrap: wrap; padding: 40px; align-items: flex-start; max-width: var(--max-width); margin: auto; }
|
||||
|
||||
.hero .splash .description { border-radius: var(--border-radius); background: var(--bg-alt); box-shadow: 15px 15px 28px 24px var(--bg-alt); -webkit-box-shadow: 15px 15px 28px 24px var(--bg-alt); -moz-box-shadow: 15px 15px 28px 24px var(--bg-alt); }
|
||||
.hero .splash .description { display: flex; flex-wrap: wrap; border-radius: var(--border-radius); background: var(--bg-alt); box-shadow: 15px 15px 28px 24px var(--bg-alt); -webkit-box-shadow: 15px 15px 28px 24px var(--bg-alt); -moz-box-shadow: 15px 15px 28px 24px var(--bg-alt); }
|
||||
|
||||
.hero .splash .description > * { margin: 40px !important; }
|
||||
|
||||
|
|
@ -95,6 +95,10 @@ body { height: 100vh; width: 100%; font-family: "Terminus", "Poppins", "Arial",
|
|||
|
||||
.hero .splash .description > ul .button { background-image: linear-gradient(228deg, var(--accent1-alt), var(--accent2-alt)); background-size: 400% 400%; -webkit-animation: backgroundBlink 7s ease infinite; -moz-animation: backgroundBlink 7s ease infinite; animation: backgroundBlink 7s ease infinite; width: 100px; height: 100px; line-height: 100px; margin: 0 0 10px 0; padding: 0; font-size: 65px; }
|
||||
|
||||
.hero .splash .description .mauticform_wrapper { width: 200px; }
|
||||
|
||||
.hero .splash .description .mauticform_wrapper .button { border: 0; }
|
||||
|
||||
.hero .splash h1, .hero .splash h2 { font-size: 2em; }
|
||||
|
||||
.hero .splash p, .hero .splash h1, .hero .splash h2, .hero .splash h3, .hero .splash h4 { text-align: left; margin-top: 20px; }
|
||||
|
|
@ -197,6 +201,14 @@ footer .footframe small .label { display: none; }
|
|||
|
||||
@media only screen and (max-width: 720px) { #pleroma .container { width: 100vw; justify-content: center; } #pleroma .container div { flex: 1 1 280px; } }
|
||||
|
||||
.bio { flex-wrap: wrap; }
|
||||
|
||||
.bio .mauticform_wrapper, .bio .mauticform-input { width: calc(100% - 80px); max-width: 480px; margin: 40px auto; }
|
||||
|
||||
.bio .mauticform_wrapper .button, .bio .mauticform-input .button { border: 0; }
|
||||
|
||||
.mautic-focus { font-family: 'Lucida Console', Monaco, monospace; color: #3c2a52; background-color: #3c2a52; }
|
||||
|
||||
h1, h2, h3, h4, h5, h6 { font-family: "Terminus", "Lucida Console", Monaco, monospace; font-weight: 700; }
|
||||
|
||||
h1 { font-size: 2.5em; }
|
||||
|
|
@ -213,7 +225,7 @@ a:hover { color: var(--accent2); text-decoration-style: wavy; text-decoration-co
|
|||
|
||||
.center { text-align: center; }
|
||||
|
||||
.button { background-color: var(--accent2); padding: 1em; margin-bottom: 20px; display: inline-block; border-radius: var(--border-radius); text-align: center; text-decoration: none; text-transform: uppercase; font-weight: 500; color: var(--bg); -webkit-box-shadow: 0px 0px 0px -3px var(--border-alt); -moz-box-shadow: 0px 0px 0px -3px var(--border-alt); box-shadow: 0px 0px 0px -3px var(--border-alt); -webkit-transition: all var(--anim-speed) ease-in-out; -moz-transition: all var(--anim-speed) ease-in-out; -ms-transition: all var(--anim-speed) ease-in-out; transition: all var(--anim-speed) ease-in-out; background-image: linear-gradient(228deg, var(--accent1-alt), var(--accent2-alt)); background-size: 400% 400%; -webkit-animation: backgroundBlink 2s ease infinite; -moz-animation: backgroundBlink 2s ease infinite; animation: backgroundBlink 2s ease infinite; }
|
||||
.button { font-family: "Terminus", "Lucida Console", Monaco, monospace; background-color: var(--accent2); padding: 1em; margin-bottom: 20px; display: inline-block; border-radius: var(--border-radius); text-align: center; text-decoration: none; text-transform: uppercase; font-weight: 500; color: var(--bg); -webkit-box-shadow: 0px 0px 0px -3px var(--border-alt); -moz-box-shadow: 0px 0px 0px -3px var(--border-alt); box-shadow: 0px 0px 0px -3px var(--border-alt); -webkit-transition: all var(--anim-speed) ease-in-out; -moz-transition: all var(--anim-speed) ease-in-out; -ms-transition: all var(--anim-speed) ease-in-out; transition: all var(--anim-speed) ease-in-out; background-image: linear-gradient(228deg, var(--accent1-alt), var(--accent2-alt)); background-size: 400% 400%; -webkit-animation: backgroundBlink 2s ease infinite; -moz-animation: backgroundBlink 2s ease infinite; animation: backgroundBlink 2s ease infinite; }
|
||||
|
||||
.button:hover { background-color: var(--accent1); color: var(--bg); -webkit-box-shadow: 0px 11px 10px -3px var(--border-alt); -moz-box-shadow: 0px 11px 10px -3px var(--border-alt); box-shadow: 0px 11px 10px -3px var(--border-alt); -webkit-transition: all var(--anim-speed) ease-in-out; -moz-transition: all var(--anim-speed) ease-in-out; -ms-transition: all var(--anim-speed) ease-in-out; transition: all var(--anim-speed) ease-in-out; }
|
||||
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue