Sengi-Windows-MacOS-Linux/docs/assets/sass/layout/_header.scss

153 lines
3.1 KiB
SCSS
Raw Normal View History

2019-04-10 06:55:29 +02:00
.header {
2019-04-13 02:16:12 +02:00
2019-04-10 06:55:29 +02:00
background-color: rgb(247, 247, 247);
height: calc(100vh - 3rem);
overflow: hidden;
2019-04-13 02:46:59 +02:00
@include respond(tab-port) {
height: calc(100vh);
}
&__image {
display: block;
2019-04-13 02:46:59 +02:00
margin: 8.5vh auto 0 auto;
2019-04-13 02:16:12 +02:00
@include respond(tab-port) {
display: none;
}
2019-04-13 02:16:12 +02:00
// @include respond(phone){
// display: none;
// }
}
&__download-box {
2019-04-13 02:16:12 +02:00
transition: all .2s;
// display: inline-block;
2019-04-13 02:16:12 +02:00
// outline: 1px solid green;
margin: 30vh auto 0 auto;
2019-04-13 02:16:12 +02:00
width: calc(95%);
2019-04-13 02:16:12 +02:00
@include respond(tab-port) {
margin: 10vh auto 0 auto;
2019-04-13 02:46:59 +02:00
width: calc(80%);
}
// position: relative;
// top: 50%;
// transform: translateY(-50%);
2019-04-13 02:46:59 +02:00
font-family: 'Open Sans', sans-serif;
2019-04-13 02:16:12 +02:00
font-size: 2rem;
&--title {
font-weight: 300;
font-size: 5rem;
margin: 0 0 1rem 2rem;
}
&--subtitle {
font-weight: 400;
font-size: 2rem;
margin-bottom: .5rem;
}
}
2019-04-13 02:16:12 +02:00
}
.download-button {
// -webkit-appearance: button;
// -moz-appearance: button;
// appearance: button;
transition: all .2s;
background-color: white;
display: block;
border: 1px solid #cdcdcd;
border-radius: 2px;
float: left;
margin-right: 5px;
padding: 0 15px 2px 15px;
font-size: 38px;
color: rgb(63, 63, 63);
//color: black;
//opacity: .80;
text-decoration: none;
// outline-color: rgb(141, 140, 140);
2019-04-13 02:46:59 +02:00
margin-bottom: 1rem;
2019-04-13 02:16:12 +02:00
&:hover {
color: rgb(250, 164, 36);
}
&__web {
font-size: 25px;
background-color: rgb(4, 212, 49);
background-color: rgb(250, 164, 36);
background-color: rgb(253, 157, 13);
background-color: rgb(63, 63, 63);;
color: white;
color: rgb(32, 32, 32);
color: white;
padding: 10px 20px 10px 15px;
border-radius: 3px;
// border: 1px solid #ececec;
border: 1px solid #ffffff;
border: 1px solid #e7e7e7;
&--label {
font-size: 25px;
font-weight: normal;
padding-left: 10px;
}
&:hover {
color: rgb(61, 61, 61);
background-color: rgb(255, 229, 190);
background-color: rgb(250, 164, 36);
}
}
}
.fa-apple {
position: relative;
top: -2px;
2019-04-13 02:46:59 +02:00
}
.footer {
text-align: center;
background-color: rgb(20, 20, 20);
color: white;
height: 18rem;
padding-top: 4em;
&__title {
font-family: 'Open Sans', sans-serif;
font-weight: lighter;
font-size: 2rem;
margin-bottom: 1.5rem;
}
&__buttons {
margin: auto;
&--button {
font-size: 4rem;
color:whitesmoke;
transition: all .2s;
&:not(:last-child){
margin-right: 2rem;
}
&:hover {
color:rgb(250, 164, 36);
}
}
}
2019-04-10 06:55:29 +02:00
}