buttons page in progress

This commit is contained in:
nixa 2016-05-12 12:04:08 +03:00
parent 85d5441f71
commit 85072185e9
19 changed files with 372 additions and 0 deletions

View file

@ -24,6 +24,10 @@ export class SidebarService {
title: 'Typography',
name: 'Typography',
},
{
title: 'Buttons',
name: 'Buttons',
},
]
},
{

View file

@ -7,6 +7,8 @@ $hover: 24;
.btn {
border-radius: 5px;
transition: all 0.1s ease;
padding: 0.344rem 1rem;
font-size: 0.9rem;
}
.btn:hover {
@ -274,3 +276,23 @@ button.progress-button {
padding: 8px 14px;
font-size: 16px;
}
.btn-group-xs>.btn, .btn-xs {
padding: 1px 5px;
font-size: 12px;
line-height: 1.5;
}
.btn-group-sm>.btn, .btn-sm {
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
}
.btn-group-lg>.btn, .btn-lg {
padding: 10px 16px;
font-size: 18px;
line-height: 1.3333333;
border-radius: 6px;
}