Project-new-web/css/master.css
Marcel Petráň 067b30e124 Ha
2019-04-19 16:41:06 +02:00

236 lines
3.9 KiB
CSS

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700');
body, html {
font-family: 'Open Sans', sans-serif !important;
margin: 0;
}
body a, html a {
margin: 0;
text-decoration: none;
}
h1.title{
font-weight: 700;
font-size: 5em;
margin-bottom: .4rem
}
h1.left{
text-align: left;
padding-top: .25em;
font-size: 4em;
font-weight: 400;
}
h2.title{
font-size: 3.5em;
font-weight: 400;
}
h3.title{
font-size: 3em;
font-weight: 700;
}
p.article{
font-size: 2.5em;
}
section.home {
padding: 4em;
min-height: 100vh;
background: #EEEEEE;
background-image: url('../img/logo.png');
background-repeat: no-repeat;
background-position: center;
background-size: 28em;
}
a img.arrow-down{
width: 3.5em;
position: absolute;
top: calc(100vh - 4em);
left: calc(50% - 1.75em);
}
section.about{
background: #FFF;
height: auto;
padding: 6em 7.6em;
}
section h1{
text-align: center;
}
section.about article.about-us-1 , article.about-us-2{
padding-top: 4em;
}
/* FUTURE PLANS FOR INCONS
article.about-us-1 h3.title::before{
content: "Whaaat";
}
*/
section.gallery-in{
background: #EEEEEE;
margin-left: auto;
margin-right: auto;
padding: 2.1em;
}
div.gallery{
padding: 2.1em;
}
div.gallery img{
width: 100%;
}
section.team , section.contact-us{
background: #FFF;
padding: 3em 7.6em;
}
section.people{
padding-top: 2em;
display: grid;
grid-template-columns: repeat(2,50%);
grid-gap: 3em;
grid-template-rows: repeat(2,auto);
justify-content: space-evenly;
text-align: center;
}
section.member{
margin: 2em 0;
}
section.member-last{
padding-top: 2em;
width: 50%;
margin: 0 auto;
display: block;
text-align: center;
}
img.member-photo{
padding: 1em;
width: 75%;
}
footer{
background-color: #4A4A4A;
padding: 3em 7.6em;
}
/* <--- NAVIGATION ---> */
nav {
position: fixed;
background: #EEEEEE;
padding: 3em;
width: calc(100%);
height: calc(100vh);
z-index: +101;
transform: scaleX(0);
transform-origin: right;
}
nav ul {
list-style-type: none;
margin: 20% auto 0 auto;
display: grid;
grid-template-rows: repeat(6,20%);
justify-content: space-evenly;
text-align: center;
width: 80%;
}
nav ul a{
color:#0E404D;
font-weight: bold;
font-size: 4.5em;
}
nav ul li {
opacity: 0;
animation: show-x .7s 1s forwards;
}
nav ul a:hover{
color:#0E404D;
text-decoration: none;
}
img.close-btn {
opacity: 0;
width: 4.2em;
position: fixed;
top: 4em;
right: 3.5em;
cursor: pointer;
}
img.menu-btn {
position: relative;
padding-top: 1.5em;
width: 5.5em;
cursor: pointer;
}
header{
position: fixed;
width: 100%;
z-index: +100;
}
div.navbar-strip{
margin-top: 3em;
}
div.navbar-container{
padding: 0 3em;
}
div.navbar-grid{
display: grid;
grid-template-columns: repeat(2,auto);
}
div.-right{
text-align: right;
}
.inactive{
animation: r-slide-menu .4s ease-out forwards;
}
.active{
display: block;
animation: slide-menu .4s ease-in forwards;
}
.active .close-btn{
animation: show-x .4s .7s forwards;
}
.active li:nth-of-type(1){
animation: menu-item .25s forwards .45s ease-in-out;
}
.active li:nth-of-type(2){
animation: menu-item .25s forwards .55s ease-in-out;
}
.active li:nth-of-type(3){
animation: menu-item .25s forwards .65s ease-in-out;
}
.active li:nth-of-type(4){
animation: menu-item .25s forwards .75s ease-in-out;
}
.active li:nth-of-type(5){
animation: menu-item .25s forwards .85s ease-in-out;
}
.active li:nth-of-type(6){
animation: menu-item .25s forwards .95s ease-in-out;
}
/* <--- ANIMATIONS ---> */
@keyframes slide-menu {
from{
transform: scaleX(0);
}
to{
transform: scaleX(1);
}
}
@keyframes r-slide-menu {
from{
transform: scaleX(1);
}
to{
transform: scaleX(0);
}
}
@keyframes show-x {
from {
opacity: 0;
}
to{
opacity: 1;
}
}
@keyframes menu-item {
from{
transform: translateY(60%);
opacity: 0;
}
to{
transform: translateY(0);
opacity: 1;
}
}