Implements a blog
This commit is contained in:
parent
993bd5ad3c
commit
f9662407e3
122 changed files with 9898 additions and 4224 deletions
18
_sass/bootstrap/mixins/_border-radius.scss
Normal file
18
_sass/bootstrap/mixins/_border-radius.scss
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
// Single side border-radius
|
||||
|
||||
@mixin border-top-radius($radius) {
|
||||
border-top-right-radius: $radius;
|
||||
border-top-left-radius: $radius;
|
||||
}
|
||||
@mixin border-right-radius($radius) {
|
||||
border-bottom-right-radius: $radius;
|
||||
border-top-right-radius: $radius;
|
||||
}
|
||||
@mixin border-bottom-radius($radius) {
|
||||
border-bottom-right-radius: $radius;
|
||||
border-bottom-left-radius: $radius;
|
||||
}
|
||||
@mixin border-left-radius($radius) {
|
||||
border-bottom-left-radius: $radius;
|
||||
border-top-left-radius: $radius;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue