front10-bootstrap
Version:
Style library based on bootstrap
31 lines (25 loc) • 634 B
CSS
.rounded {
border-radius: 0.25rem ;
}
.rounded-top {
border-top-left-radius: 0.25rem ;
border-top-right-radius: 0.25rem ;
}
.rounded-right {
border-top-right-radius: 0.25rem ;
border-bottom-right-radius: 0.25rem ;
}
.rounded-bottom {
border-bottom-right-radius: 0.25rem ;
border-bottom-left-radius: 0.25rem ;
}
.rounded-left {
border-top-left-radius: 0.25rem ;
border-bottom-left-radius: 0.25rem ;
}
.rounded-circle {
border-radius: 50% ;
}
.rounded-0 {
border-radius: 0 ;
}