Archived
1
0
Fork 0

initial commit

This commit is contained in:
Henrik Hautakoski 2017-09-01 17:10:27 +02:00
commit e869a1cab4
107 changed files with 9029 additions and 0 deletions

View file

@ -0,0 +1,13 @@
.about {
&:extend(.row all);
&-main {
.make-sm-column(8);
}
&-reference {
.make-sm-column(4);
}
}

View file

@ -0,0 +1,43 @@
// ----------------------------------
// Feature section
// ----------------------------------
.feature-section {
&:extend(.section);
> div + div {
margin-top: 2em;
}
.steps {
&:extend(.row all);
.steps-img {
&:extend(.center-block);
width: 270px;
height: 220px;
}
.steps-step1 .steps-img {
background-image: url('@{image-path}/step1.png');
}
.steps-step2 .steps-img {
background-image: url('@{image-path}/step2.png');
}
.steps-step3 .steps-img {
background-image: url('@{image-path}/step3.png');
}
.steps-step1,
.steps-step2,
.steps-step3 {
.make-md-column(4);
.text-center();
}
}
.call-to-action {
&:extend(.text-center);
}
}

View file

@ -0,0 +1,24 @@
.login-container {
.center-block();
width: 400px;
h3 {
width: 100%;
text-align: center;
}
.oauth > a {
font-size: @font-size-large;
width: 100%;
margin-bottom: 4px;
text-align: center;
.icon {
.icon-vcenter();
font-size: 24px;
margin-right: .2em;
}
}
}