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

114 lines
2.3 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;
&__image {
display: block;
margin: 8vh 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;
}
// position: relative;
// top: 50%;
// transform: translateY(-50%);
2019-04-13 02:16:12 +02:00
font-family: 'Open Sans',
sans-serif;
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);
&: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-10 06:55:29 +02:00
}