loads of progress. kinda

This commit is contained in:
Jonas_Jones 2023-01-15 19:04:09 +01:00
parent b283560e10
commit 35d4d0ef3a
9 changed files with 233 additions and 31 deletions

View file

@ -0,0 +1,59 @@
footer {
position: absolute;
bottom: 0;
width: 100%;
background-image: url("/src/misc/footerBg.png");
background-size: cover;
z-index: -10;
padding-top: 100px;
overflow: hidden;
}
footer a {
margin: 5px;
background-color: #10335C;
}
.contactIconDiv {
background-color: gray;
width: 31px;
border-radius: 5px;
padding: 3px;
padding-bottom: 0px;
}
#innerFooterBox {
margin: 20%;
margin-top: 600px;
margin-bottom: 15px;
display: flex;
}
#innerFooterBox div {
margin: 10px;
}
#toplinks {
flex: content;
flex-direction: column;
}
#topLinks a, h1 {
background-color: transparent;
color: white;
text-decoration: none;
font-size: 30px;
}
#topLinks div a {
text-align: right;
}
.footer-bar {
background-color: black;
padding: 0px;
color: white;
text-align: center;
}
.footer-bar a {
background-color: black;
}

View file

@ -1,10 +1,18 @@
body {
margin: 0px;
padding: 0px;
}
footer {
bottom: 0;
width: 100%;
background-image: url("/.src/misc/footerBg.png");
background-image: url("/.src/assets/misc/footerBg.png");
background-size: cover;
z-index: -10;
padding-top: 100px;
position: absolute;
}
footer a {
margin: 5px;

View file

@ -12,6 +12,8 @@
width: 100%;
height: 500px;
z-index: -1;
background-image: url("/.src/assets/misc/headerBg.png");
background-size: cover;
}
#header h1 {
font-size: 150px;

View file

@ -9,7 +9,7 @@
html {
font-family: 'sary_soft_semiboldregular';
background-color: #bababa;
margin: 0px;
}
@ -20,6 +20,15 @@ html {
#headerContent {
background-image: url("/.src/assets/misc/headerBg.png");
background-position: bottom;
background-position: bottom left;
background-size: cover;
}
}
@media only screen and (max-device-width:842px) {
p, a {
/*font-size: 50px;*/
}
#error-msg {
display: none;
}
}

81
.src/css/light/popups.css Normal file
View file

@ -0,0 +1,81 @@
.generic_popup {
display: none;
}
@media only screen and (max-device-width:842px) {
/* show the popup */
.generic_popup { display: block; }
}
.generic_popup {
position:absolute;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.4);
-webkit-animation-name: fadeIn;
-webkit-animation-duration: 0.4s;
animation-name: fadeIn;
animation-duration: 0.4s
}
.generic_content {
position: fixed;
bottom: 0;
background-color: #fefefe;
width: 100%;
-webkit-animation-name: slideIn;
-webkit-animation-duration: 0.4s;
animation-name: slideIn;
animation-duration: 0.4s
}
.close {
color: white;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover, .close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
.generic_header {
padding: 2px 16px;
background-color: #5cb85c;
color: white;
}
.generic_body {padding: 2px 16px;}
.generic_footer {
padding: 2px 16px;
background-color: #5cb85c;
color: white;
}
@-webkit-keyframes slideIn {
from {bottom: -300px; opacity: 0}
to {bottom: 0; opacity: 1}
}
@keyframes slideIn {
from {bottom: -300px; opacity: 0}
to {bottom: 0; opacity: 1}
}
@-webkit-keyframes fadeIn {
from {opacity: 0}
to {opacity: 1}
}
@keyframes fadeIn {
from {opacity: 0}
to {opacity: 1}
}