strasne stradani s css
This commit is contained in:
parent
9cc1141746
commit
7c23d35705
3 changed files with 416 additions and 52 deletions
114
css/master.css
114
css/master.css
|
|
@ -3,6 +3,11 @@ body, html {
|
|||
font-family: 'Open Sans', sans-serif !important;
|
||||
color: #4A4A4A !important;
|
||||
margin: 0;
|
||||
-webkit-text-size-adjust: none;
|
||||
-moz-text-size-adjust: none;
|
||||
-ms-text-size-adjust: none;
|
||||
text-size-adjust: none;
|
||||
font-size: 11px;
|
||||
}
|
||||
body a, html a {
|
||||
margin: 0;
|
||||
|
|
@ -12,51 +17,60 @@ section.gallery-in, div.home{
|
|||
background-color: #EEEEEE;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
padding: 3em 5em;
|
||||
padding: 2em 3em;
|
||||
}
|
||||
section.team, section.contact-us, section.about{
|
||||
background: #FFF;
|
||||
padding: 3em 5em;
|
||||
padding: 2em 3em 0 3em;
|
||||
height: auto;
|
||||
}
|
||||
h1.title{
|
||||
font-weight: 700;
|
||||
font-size: 5em;
|
||||
margin-bottom: .4rem;
|
||||
font-size: 1em;
|
||||
margin-bottom: .2em;
|
||||
}
|
||||
h2.nav, h1.nav{
|
||||
text-align: left;
|
||||
padding-top: .25em;
|
||||
margin-bottom: .4rem;
|
||||
font-size: 4em;
|
||||
padding-top: .60em;
|
||||
margin-bottom: .2em;
|
||||
font-size: 2em;
|
||||
font-weight: 600;
|
||||
}
|
||||
h2.title{
|
||||
font-weight: 700;
|
||||
font-size: 5em;
|
||||
font-size: 2.4em;
|
||||
margin-bottom: .4rem;
|
||||
text-align: center;
|
||||
}
|
||||
h3.title{
|
||||
font-size: 3em;
|
||||
font-size: 1.4em;
|
||||
font-weight: 700;
|
||||
}
|
||||
p.article{
|
||||
padding-top: .3em;
|
||||
font-size: 2.5em;
|
||||
font-size: 1.3em;
|
||||
}
|
||||
.home {
|
||||
min-height: 100vh; /* Bude problem v safari, kde to musim odjebat od nav baru */
|
||||
background-image: url('../img/logo.png');
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: 28em;
|
||||
background-size: 15em;
|
||||
position: relative;
|
||||
}
|
||||
.fill{
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
}
|
||||
a.arrow-down{
|
||||
position: relative;
|
||||
top: calc(100vh - 6em); /* Bude problem v safari, kde to musim odjebat od nav baru */
|
||||
left: calc(50% - 1em);
|
||||
}
|
||||
img.arrow-down{
|
||||
width: 3.5em;
|
||||
position: absolute;
|
||||
top: calc(100vh - 4.7em); /* Bude problem v safari, kde to musim odjebat od nav baru */
|
||||
left: calc(50% - 1.75em);
|
||||
width: 2em;
|
||||
animation: arrow 3s infinite;
|
||||
-webkit-animation: arrow 3s infinite;
|
||||
}
|
||||
|
|
@ -64,7 +78,7 @@ section h1{
|
|||
text-align: center;
|
||||
}
|
||||
section.about article.about-us-1 , article.about-us-2{
|
||||
padding-top: 4em;
|
||||
padding-top: 1em;
|
||||
}
|
||||
/* FUTURE PLANS FOR INCONS
|
||||
article.about-us-1 h3.title::before{
|
||||
|
|
@ -79,40 +93,36 @@ div.gallery img{
|
|||
width: 100%;
|
||||
}
|
||||
.people{
|
||||
padding-top: 2em;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 23.05em);
|
||||
grid-template-columns: repeat(2, 10em);
|
||||
grid-template-rows: repeat(2,auto);
|
||||
grid-gap: 3em;
|
||||
grid-gap: 1em;
|
||||
justify-content: space-evenly;
|
||||
text-align: center;
|
||||
}
|
||||
section.member{
|
||||
margin: 2em 0 0 0;
|
||||
margin: 0;
|
||||
}
|
||||
section.member-last{
|
||||
width: 23em;
|
||||
margin: 5em auto 0 auto;
|
||||
width: 10em;
|
||||
margin: 2em auto 0 auto;
|
||||
display: block;
|
||||
text-align: center;
|
||||
}
|
||||
img.member-photo{
|
||||
padding: 1em;
|
||||
width: 75%;
|
||||
padding: .5em;
|
||||
width: 100%;
|
||||
}
|
||||
form.contact-form{
|
||||
display: grid;
|
||||
grid-template-rows: repeat(3,auto);
|
||||
grid-row-gap: .5em;
|
||||
font-size: 2.5em;
|
||||
font-size: 1.5em;
|
||||
font-weight: 300;
|
||||
margin: 1.5em 0;
|
||||
}
|
||||
input.name-surname{
|
||||
width: 15em;
|
||||
}
|
||||
input{
|
||||
width: 15em;
|
||||
width: 13em;
|
||||
}
|
||||
textarea{
|
||||
resize: none !important;
|
||||
|
|
@ -122,12 +132,12 @@ input, textarea{
|
|||
background-color: #F9F9F9;
|
||||
color: #4A4A4A !important;
|
||||
border: none;
|
||||
padding: .35em .5em;
|
||||
padding: .15em .25em;
|
||||
}
|
||||
button{
|
||||
display: block !important;
|
||||
margin: .7em auto 0 auto !important;
|
||||
width: 13em;
|
||||
width: 10em;
|
||||
color: #828282;
|
||||
background-color: #EEEEEE;
|
||||
border: none;
|
||||
|
|
@ -152,18 +162,18 @@ button{
|
|||
footer{
|
||||
width: 100%;
|
||||
background-color: #4A4A4A;
|
||||
padding: 3em 3em;
|
||||
padding: 2em 3em;
|
||||
color: #FCFCFC !important;
|
||||
display: grid;
|
||||
grid-template-rows: repeat(2,auto);
|
||||
}
|
||||
footer p.article{
|
||||
font-size: 2em;
|
||||
font-size: 1.13em;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
footer h3.title{
|
||||
font-size: 3em;
|
||||
font-size: 1.7em;
|
||||
}
|
||||
.footer-top{
|
||||
display: grid;
|
||||
|
|
@ -178,10 +188,10 @@ footer .footer-buttons-left-row-grid{
|
|||
footer .footer-button{
|
||||
background-color: #5D5D5D;
|
||||
color: #FCFCFC;
|
||||
font-size: 1.8em;
|
||||
font-size: 1.15em;
|
||||
text-align: center;
|
||||
width: 15em;
|
||||
height: 1.7em;
|
||||
width: 11.5em;
|
||||
height: 1.5em;
|
||||
}
|
||||
footer div.footer-top div.footer-buttons-left-row-grid a{
|
||||
text-decoration: none !important;
|
||||
|
|
@ -193,7 +203,7 @@ footer .footer-logo-right-col-grid{
|
|||
justify-content: center;
|
||||
}
|
||||
footer .footer-img-logo{
|
||||
width: 10em;
|
||||
width: 6em;
|
||||
cursor: pointer;
|
||||
}
|
||||
section.footer-bottom{
|
||||
|
|
@ -203,7 +213,7 @@ section.footer-bottom{
|
|||
footer .footer-contacts-row-grid{
|
||||
display: grid;
|
||||
grid-template-rows: repeat(5,auto);
|
||||
margin-top: 3em;
|
||||
margin-top: 1em;
|
||||
}
|
||||
footer .footer-heading-col-grid{
|
||||
display: grid;
|
||||
|
|
@ -215,26 +225,27 @@ footer .footer-heading-left{
|
|||
footer .footer-heading-social-col-grid{
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3,auto);
|
||||
justify-content: center;
|
||||
grid-column-gap: 2em;
|
||||
justify-content: right;
|
||||
grid-column-gap: 1em;
|
||||
padding-right: .5em;
|
||||
}
|
||||
footer .footer-img-social{
|
||||
width: 3em;
|
||||
width: 1.7em;
|
||||
cursor: pointer;
|
||||
}
|
||||
footer .footer-contacts-col-grid{
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2,24em);
|
||||
grid-template-columns: repeat(2,11em);
|
||||
}
|
||||
|
||||
footer .footer-visit-row-grid{
|
||||
display: grid;
|
||||
grid-template-rows: repeat(3,auto);
|
||||
margin-top: 3em;
|
||||
margin-top: 1em;
|
||||
}
|
||||
footer .footer-visit-col-grid{
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2,24em);
|
||||
grid-template-columns: repeat(2,11em);
|
||||
}
|
||||
img.opacity-decrease{
|
||||
opacity: .05;
|
||||
|
|
@ -252,17 +263,18 @@ nav {
|
|||
}
|
||||
nav ul {
|
||||
list-style-type: none;
|
||||
margin: 6em auto 0 auto;
|
||||
margin: 1em auto 0 auto;
|
||||
display: grid;
|
||||
grid-template-rows: repeat(6, 8em);
|
||||
grid-template-rows: repeat(6, 3.5em);
|
||||
justify-content: space-evenly;
|
||||
text-align: center;
|
||||
width: 80%;
|
||||
padding: 0;
|
||||
}
|
||||
nav ul a{
|
||||
color:#4A4A4A;
|
||||
font-weight: bold;
|
||||
font-size: 4.5em;
|
||||
font-size: 2.3em;
|
||||
}
|
||||
nav ul li {
|
||||
opacity: 0;
|
||||
|
|
@ -280,13 +292,13 @@ img.close-btn {
|
|||
opacity: 0;
|
||||
padding-top: 1.5em;
|
||||
position: relative;
|
||||
width: 4.2em;
|
||||
width: 2em;
|
||||
cursor: pointer;
|
||||
}
|
||||
img.menu-btn {
|
||||
position: relative;
|
||||
padding-top: 1.5em;
|
||||
width: 5.5em;
|
||||
width: 2.5em;
|
||||
cursor: pointer;
|
||||
}
|
||||
header{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue