Implements a blog
This commit is contained in:
parent
993bd5ad3c
commit
f9662407e3
122 changed files with 9898 additions and 4224 deletions
21
_sass/bootstrap/mixins/_responsive-visibility.scss
Normal file
21
_sass/bootstrap/mixins/_responsive-visibility.scss
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
// Responsive utilities
|
||||
|
||||
//
|
||||
// More easily include all the states for responsive-utilities.less.
|
||||
// [converter] $parent hack
|
||||
@mixin responsive-visibility($parent) {
|
||||
#{$parent} {
|
||||
display: block !important;
|
||||
}
|
||||
table#{$parent} { display: table; }
|
||||
tr#{$parent} { display: table-row !important; }
|
||||
th#{$parent},
|
||||
td#{$parent} { display: table-cell !important; }
|
||||
}
|
||||
|
||||
// [converter] $parent hack
|
||||
@mixin responsive-invisibility($parent) {
|
||||
#{$parent} {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue