(add order template mockup)

This commit is contained in:
Adam Wathan
2017-02-08 15:22:01 -05:00
parent 09e1d5a11d
commit 825a3da157
10 changed files with 219 additions and 2 deletions

View File

@@ -0,0 +1,73 @@
a, .link {
font-weight: @font-weight-normal;
color: @text-dark;
text-decoration: none;
&:hover, &:focus {
color: darken(@text-dark, 15%);
text-decoration: underline;
}
&:focus {
.tab-focus;
}
}
.link-brand {
color: @text-brand;
&:hover, &:focus {
color: darken(@text-brand, 15%);
}
}
.link-brand-soft {
color: @text-brand-soft;
&:hover, &:focus {
color: darken(@text-brand-soft, 15%);
}
}
.link-underline {
text-decoration: underline;
}
.link-plain {
&:hover, &:focus {
text-decoration: none;
}
}
.link-soft {
color: @text-dark-soft;
&:hover, &:focus {
color: @text-dark;
}
}
.link-muted {
color: @text-dark-muted;
&:hover, &:focus {
color: @text-dark;
}
}
.link-light {
color: @text-light;
&:hover, &:focus {
color: @text-light;
}
}
.link-light-muted {
color: @text-light-muted;
&:hover, &:focus {
color: @text-light-soft;
}
}