Silicone.css
A simple css helper to use with every css frameworks.
Getting Started
Download latest version or install by bower:
bower install silicone
Then just include it by HTML link:
CDN
Use Unpkg to get latest version file.
https://unpkg.com/silicone/dist/silicone.min.css
Box Centered
Use .box-center
to make an <div>
element align centered. (By using margin: 0 auto;
)
It will remove float styles from this element.
Vertical Align
Content
This is an full example.
MiddleLorem ipsum dolor sit amet, consectetur adipisicing elit.BottomLorem ipsum dolor sit amet, consectetur adipisicing elit.
.table-layout
Use table-layout
can help us do vertical align with display: table
method but won't break bootstrap col-*
classes.
Also supported media queries (xs-
~ lg-
) to create RWD sites.
......
Clearfix
Use float-group
class to wrap elements, this name is more semantic.
Or use classic sc-clearfix
class.
Sizing
Height
A simple class set to set vh
height to elements.
.height-xs
: 20vh.height-sm
: 40vh.height-md
: 60vh.height-lg
: 80vh.height-full
: 100vh
Width
Width classes is useful if you want some elements full width in RWD.
This example will make button 100% width when breakpoint small than 767px.
Submit
.xs-width-full
: Full width if <= 479px.sm-width-full
: Full width if <= 575px.md-width-full
: Full width if <= 991px.lg-width-full
: Full width if <= 1199px.xl-width-full
: Always full width.
Grid Columns Equal Height
Use .equal-hight
on row div to make child columns equal height.
This class uses
flex-wrap
property.
Background Mask
bg-mask class helps us set a background mask to element.
This example use bg-mask
to create black ::before element and bg-mask-op-5
add opacity 0.5 to overlay
the background image. And the bg-mask-content
make sure content text will float on the top.
Hello World
The full example is:
Hello World
The bg-mask-op-*
support 1 to 9.
bg-cover
is a helpful class to set background-size: cover
.
Background Blur
...
Background Position
You can use .bg-{position}
classes to set background position.
.bg-center-center
.bg-top
.bg-middle
.bg-bottpm
.bg-left
.bg-center
.bg-right
Margin and Padding
Margin and Padding is a fork of less-space library.
<!-- content --><!-- sidebar --><!-- "row" --><!-- "container" -->
You don't need to know Bootstrap or any other CSS Framework to understand xs-mb-20
actually does.
Let's examine these 3 parted class with a visual diagram.
Red area:
This section defines which viewport that element belongs right now.
xs
Mobile phones and bigger screen sizes.. xs represents global viewport size by the way. If we want margin or padding values stay same on all screen sizes, we use xs to achieve that.sm
(>= 576px) Tablet devices and bigger screens.md
(>= 768px) Desktop and bigger screenslg
(>= 992px) Large viewport sizes.xl
(>= 1200px) Extra large wide viewport sizes.
Blue area
This section defines the attribute that you want to use, either margin
or padding
p
paddingpt
padding-toppr
padding-rightpb
padding-bottompl
padding-leftm
marginmt
margin-topmr
margin-rightmb
margin-bottomml
margin-left
Green area
This is the integer section that you want to set.
- It could be zero "0"
- Only digits.
- Minus values will not be accepted. (I Didn't define them consider its using rate.)
- Currently supports: 5, 10, 15, 20, 25, 30, 40, 50, 75, 100