Fixing typography styles bug
parent
196ba9709e
commit
d8ab7157af
|
@ -31,10 +31,15 @@ h1, h2, h3, h4, h5, h6 {
|
||||||
h1 {
|
h1 {
|
||||||
@extend .xxlarge;
|
@extend .xxlarge;
|
||||||
font-family: 'ostrichSans';
|
font-family: 'ostrichSans';
|
||||||
margin-bottom: 2rem;
|
line-height: 2.7rem;
|
||||||
|
span {
|
||||||
|
@include ellipsis(250px);
|
||||||
|
}
|
||||||
.green {
|
.green {
|
||||||
color: $greenTaiga;
|
color: $greenTaiga;
|
||||||
margin-left: .3rem;
|
}
|
||||||
|
.date {
|
||||||
|
color: $grayLight;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,14 +4,14 @@
|
||||||
background-attachment: fixed;
|
background-attachment: fixed;
|
||||||
background-position: left bottom;
|
background-position: left bottom;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
padding: 2em .3em;
|
padding: 2rem .3rem;
|
||||||
font-family: 'ostrichSans';
|
font-family: 'ostrichSans';
|
||||||
height: 100%;
|
height: 100%;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
margin-bottom: 1em;
|
margin-bottom: 2rem;
|
||||||
img {
|
img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
@ -19,12 +19,11 @@
|
||||||
|
|
||||||
.main-nav {
|
.main-nav {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin-bottom: 3em;
|
|
||||||
list-style: none;
|
list-style: none;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
position: relative;
|
position: relative;
|
||||||
li {
|
li {
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1rem;
|
||||||
}
|
}
|
||||||
a {
|
a {
|
||||||
color: $white;
|
color: $white;
|
||||||
|
@ -59,7 +58,7 @@
|
||||||
width: 80px;
|
width: 80px;
|
||||||
padding: 0 10px;
|
padding: 0 10px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 1em;
|
bottom: 1rem;
|
||||||
.popover {
|
.popover {
|
||||||
@include popover(150px, "", 30px, 30px);
|
@include popover(150px, "", 30px, 30px);
|
||||||
a{
|
a{
|
||||||
|
@ -87,7 +86,7 @@
|
||||||
.settings {
|
.settings {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
a {
|
a {
|
||||||
margin-right: .5em;
|
margin-right: .5rem;
|
||||||
color: $whitish;
|
color: $whitish;
|
||||||
&:hover {
|
&:hover {
|
||||||
@include transition (color .3s linear);
|
@include transition (color .3s linear);
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
extends layout
|
||||||
|
|
||||||
|
block head
|
||||||
|
title Taiga Project management web application with scrum in mind!
|
||||||
|
|
||||||
|
block content
|
||||||
|
section.main.usstory
|
||||||
|
h1
|
||||||
|
span ProjectName
|
||||||
|
span.green Sprint Name
|
||||||
|
span.date 02/10/2014-15/10/2014
|
|
@ -0,0 +1,12 @@
|
||||||
|
extends layout
|
||||||
|
|
||||||
|
block head
|
||||||
|
title Taiga Project management web application with scrum in mind!
|
||||||
|
|
||||||
|
block content
|
||||||
|
section.main.usstory
|
||||||
|
include views/components/mainTitle
|
||||||
|
|
||||||
|
sidebar.menu-secondary.sidebar
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
h1 ProjectName
|
h1
|
||||||
span.green Title
|
span ProjectName
|
||||||
|
span.green Title
|
||||||
|
|
Loading…
Reference in New Issue