awesome-cheatsheets/frontend/tailwind.css

974 lines
24 KiB
CSS
Raw Normal View History

2020-03-28 18:51:38 +00:00
/* *******************************************************************************************
* TAILWIND.CSS
* DOCUMENTATION: https://tailwindcss.com/
* ******************************************************************************************* */
/*
2020-03-28 22:07:29 +00:00
* Available breakpoints
2020-03-29 13:22:43 +00:00
* --------------------
* sm: min-width: 640px;
* md: min-width: 768px;
* lg: min-width: 1024px;
* xl: min-width: 1280px;
*/
2020-03-29 10:34:47 +00:00
/* *******************************************************************************************
* LAYOUT
* ******************************************************************************************* */
/*
2020-03-28 21:20:11 +00:00
* Container
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-28 21:20:11 +00:00
* A component for fixing an element's width to the current breakpoint.
*/
2020-03-29 10:34:47 +00:00
.container
2020-03-28 22:28:07 +00:00
2020-03-29 10:51:33 +00:00
/*
* Box-sizing
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
* Utilities for controlling how the browser should calculate an element's total size.
* By default, only responsive variants are generated for box-sizing utilities.
*/
2020-03-29 10:34:47 +00:00
.box-border /* box-sizing: border-box; */
.box-content /* box-sizing: content-box; */
2020-03-29 10:51:33 +00:00
/*
* Display
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
* Utilities for controlling the display box type of an element.
* By default, only responsive variants are generated for display utilities.
*/
2020-03-29 10:34:47 +00:00
.hidden /* display: none; */
.block /* display: block; */
.inline-block /* display: inline-block; */
.inline /* display: inline; */
.flex /* display: flex; */
.inline-flex /* display: inline-flex; */
.grid /* display: grid; */
.table /* display: table; */
.table-caption /* display: table-caption; */
.table-cell /* display: table-cell; */
.table-column /* display: table-column; */
.table-column-group /* display: table-column-group; */
.table-footer-group /* display: table-footer-group; */
.table-header-group /* display: table-header-group; */
.table-row-group /* display: table-row-group; */
.table-row /* display: table-row; */
2020-03-29 10:51:33 +00:00
/*
* Floats
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
* Utilities for controlling the wrapping of content around an element.
* By default, only responsive variants are generated for float utilities.
*/
2020-03-29 10:34:47 +00:00
.float-right /* float: right; */
.float-left /* float: left; */
.float-none /* float: none; */
.clearfix /* &::after { content: ""; display: table; clear: both; } */
2020-03-29 10:51:33 +00:00
/*
* Clear
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
* Utilities for controlling the wrapping of content around an element.
* By default, only responsive variants are generated for clear utilities.
*/
2020-03-29 10:34:47 +00:00
.clear-left /* clear: left; */
.clear-right /* clear: right; */
.clear-both /* clear: both; */
2020-03-29 10:51:33 +00:00
/*
* Object Fit
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
* Utilities for controlling how a replaced element's content should be resized.
* By default, only responsive variants are generated for object-fit utilities.
*/
2020-03-29 10:34:47 +00:00
.object-contain /* object-fit: contain; */
.object-cover /* object-fit: cover; */
.object-fill /* object-fit: fill; */
.object-none /* object-fit: none; */
.object-scale-down /* object-fit: scale-down; */
2020-03-29 10:51:33 +00:00
/*
* Object Position
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
* Utilities for controlling how a replaced element's content should be positioned within its container.
* By default, only responsive variants are generated for object position utilities.
*/
.object-bottom /* object-position: bottom; */
.object-center /* object-position: center; */
.object-left /* object-position: left; */
.object-left-bottom /* object-position: left bottom; */
.object-left-top /* object-position: left top; */
.object-right /* object-position: right; */
.object-right-bottom /* object-position: right bottom; */
.object-right-top /* object-position: right top; */
.object-top /* object-position: top; */
/*
* Overflow
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
* Utilities for controlling how an element handles content that is too large for the container.
* By default, only responsive variants are generated for overflow utilities.
*/
.overflow-auto /* overflow: auto; */
.overflow-hidden /* overflow: hidden; */
.overflow-visible /* overflow: visible; */
.overflow-scroll /* overflow: scroll; */
.overflow-x-auto /* overflow-x: auto; */
.overflow-y-auto /* overflow-y: auto; */
.overflow-x-hidden /* overflow-x: hidden; */
.overflow-y-hidden /* overflow-y: hidden; */
.overflow-x-visible /* overflow-x: visible; */
.overflow-y-visible /* overflow-y: visible; */
.overflow-x-scroll /* overflow-x: scroll; */
.overflow-y-scroll /* overflow-y: scroll; */
.scrolling-touch /* -webkit-overflow-scrolling: touch; */
.scrolling-auto /* -webkit-overflow-scrolling: auto; */
/*
* Position
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
* Utilities for controlling how an element is positioned in the DOM.
* By default, only responsive variants are generated for position utilities.
*/
.static /* position: static; */
.fixed /* position: fixed; */
.absolute /* position: absolute; */
.relative /* position: relative; */
.sticky /* position: sticky; */
/*
* Top / Right / Bottom / Left
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
* Utilities for controlling the placement of positioned elements.
* By default, only responsive variants are generated for top, right, bottom, left, and inset utilities.
*/
2020-03-29 10:46:50 +00:00
2020-03-29 10:51:33 +00:00
.inset-0 /* top: 0; right: 0; bottom: 0; left: 0; */
.inset-y-0 /* top: 0; bottom: 0; */
.inset-x-0 /* right: 0; left: 0; */
.top-0 /* top: 0; */
.right-0 /* right: 0; */
.bottom-0 /* bottom: 0; */
.left-0 /* left: 0; */
.inset-auto /* top: auto; right: auto; bottom: auto; left: auto; */
.inset-y-auto /* top: auto; bottom: auto; */
.inset-x-auto /* left: auto; right: auto; */
.top-auto /* top: auto; */
.bottom-auto /* bottom: auto; */
.left-auto /* left: auto; */
.right-auto /* right: auto; */
2020-03-29 10:46:50 +00:00
2020-03-29 10:51:33 +00:00
/*
* Visibility
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 12:08:57 +00:00
* Utilities for controlling the visibility of an element.
* By default, only responsive variants are generated for visibility utilities.
2020-03-29 10:51:33 +00:00
*/
2020-03-29 12:08:57 +00:00
.visible /* visibility: visible; */
.invisible /* visibility: hidden; */
2020-03-29 10:51:33 +00:00
/*
* Z-Index
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 12:08:57 +00:00
* Utilities for controlling the stack order of an element.
* By default, only responsive variants are generated for z-index utilities.
2020-03-29 10:51:33 +00:00
*/
2020-03-29 12:08:57 +00:00
.z-0 /* z-index: 0; */
.z-10 /* z-index: 10; */
.z-20 /* z-index: 20; */
.z-30 /* z-index: 30; */
.z-40 /* z-index: 40; */
.z-50 /* z-index: 50; */
.z-auto /* z-index: auto; */
2020-03-29 10:51:33 +00:00
/* *******************************************************************************************
2020-03-29 10:34:47 +00:00
* FLEXBOX
* ******************************************************************************************* */
2020-03-29 13:22:43 +00:00
.flex /* display: flex; */
.inline-flex /* display: inline-flex; */
2020-03-29 10:51:33 +00:00
/*
* Flex Direction
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 12:08:57 +00:00
* Utilities for controlling the direction of flex items.
* By default, only responsive variants are generated for flex-direction utilities.
2020-03-29 10:51:33 +00:00
*/
2020-03-29 12:08:57 +00:00
.flex-row /* flex-direction: row; */
.flex-row-reverse /* flex-direction: row-reverse; */
.flex-col /* flex-direction: column; */
.flex-col-reverse /* flex-direction: column-reverse; */
2020-03-29 10:51:33 +00:00
/*
* Flex Wrap
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 12:13:05 +00:00
* Utilities for controlling how flex items wrap.
* By default, only responsive variants are generated for flex-wrap utilities.
2020-03-29 10:51:33 +00:00
*/
2020-03-29 12:13:05 +00:00
.flex-no-wrap /* flex-wrap: nowrap; */
.flex-wrap /* flex-wrap: wrap; */
.flex-wrap-reverse /* flex-wrap: wrap-reverse; */
2020-03-29 10:51:33 +00:00
/*
* Align Items
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 12:16:25 +00:00
* Utilities for controlling how flex items are positioned along a container's cross axis.
* By default, only responsive variants are generated for align-items utilities.
2020-03-29 10:51:33 +00:00
*/
2020-03-29 12:16:25 +00:00
.items-stretch /* align-items: stretch; */
.items-start /* align-items: flex-start; */
.items-center /* align-items: center; */
.items-end /* align-items: flex-end; */
.items-baseline /* align-items: baseline; */
2020-03-29 10:51:33 +00:00
/*
* Align Content
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 12:18:58 +00:00
* Utilities for controlling how lines are positioned in multi-line flex containers.
* By default, only responsive variants are generated for align-content utilities.
2020-03-29 10:51:33 +00:00
*/
2020-03-29 12:18:58 +00:00
.content-start /* align-content: flex-start; */
.content-center /* align-content: center; */
.content-end /* align-content: flex-end; */
.content-between /* align-content: space-between; */
.content-around /* align-content: space-around; */
2020-03-29 10:51:33 +00:00
/*
* Align Self
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 12:38:47 +00:00
* Utilities for controlling how an individual flex item is positioned along its container's cross axis.
* By default, only responsive variants are generated for align-self utilities.
2020-03-29 10:51:33 +00:00
*/
2020-03-29 12:38:47 +00:00
.self-auto /* align-self: auto; */
.self-start /* align-self: flex-start; */
.self-center /* align-self: center; */
.self-end /* align-self: flex-end; */
.self-stretch /* align-self: stretch; */
2020-03-29 10:51:33 +00:00
/*
* Justify Content
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 12:38:47 +00:00
* Utilities for controlling how flex items are positioned along a container's main axis.
* By default, only responsive variants are generated for justify-content utilities.
2020-03-29 10:51:33 +00:00
*/
2020-03-29 12:38:47 +00:00
.justify-start /* justify-content: flex-start; */
.justify-center /* justify-content: center; */
.justify-end /* justify-content: flex-end; */
.justify-between /* justify-content: space-between; */
.justify-around /* justify-content: space-around; */
2020-03-29 10:51:33 +00:00
/*
* Flex
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 12:38:47 +00:00
* Utilities for controlling how flex items both grow and shrink.
* By default, only responsive variants are generated for flex utilities.
2020-03-29 10:51:33 +00:00
*/
2020-03-29 12:38:47 +00:00
.flex-initial /* flex: 0 1 auto; */
.flex-1 /* flex: 1 1 0%; */
.flex-auto /* flex: 1 1 auto; */
.flex-none /* flex: none; */
2020-03-29 10:51:33 +00:00
/*
* Flex Grow
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 12:38:47 +00:00
* Utilities for controlling how flex items grow.
* By default, only responsive variants are generated for flex grow utilities.
2020-03-29 10:51:33 +00:00
*/
2020-03-29 12:38:47 +00:00
.flex-grow /* flex-grow: 1; */
.flex-grow-0 /* flex-grow: 0; */
2020-03-29 10:51:33 +00:00
/*
* Flex Shrink
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 12:38:47 +00:00
* Utilities for controlling how flex items shrink.
* By default, only responsive variants are generated for flex shrink utilities.
2020-03-29 10:51:33 +00:00
*/
2020-03-29 12:38:47 +00:00
.flex-shrink /* flex-shrink: 1; */
.flex-shrink-0 /* flex-shrink: 0; */
2020-03-29 10:51:33 +00:00
/*
* Order
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 12:38:47 +00:00
* Utilities for controlling the order of flex items.
* By default, only responsive variants are generated for order utilities.
2020-03-29 10:51:33 +00:00
*/
2020-03-29 12:38:47 +00:00
.order-first /* order: -9999; */
.order-last /* order: 9999; */
.order-none /* order: 0; */
.order-1 /* order: 1; */
.order-2 /* order: 2; */
.order-3 /* order: 3; */
.order-4 /* order: 4; */
.order-5 /* order: 5; */
.order-6 /* order: 6; */
.order-7 /* order: 7; */
.order-8 /* order: 8; */
.order-9 /* order: 9; */
.order-10 /* order: 10; */
.order-11 /* order: 11; */
.order-12 /* order: 12; */
2020-03-29 10:51:33 +00:00
/* *******************************************************************************************
2020-03-29 10:34:47 +00:00
* GRID
* ******************************************************************************************* */
2020-03-29 13:22:43 +00:00
.grid /* display: grid; */
2020-03-29 10:51:33 +00:00
/*
* Grid Template Columns
2020-03-29 13:22:43 +00:00
* --------------------
* Utilities for specifying the columns in a grid layout.
* By default, only responsive variants are generated for grid-template-columns utilities.
*/
.grid-cols-1 /* grid-template-columns: repeat(1, minmax(0, 1fr)); */
.grid-cols-2 /* grid-template-columns: repeat(2, minmax(0, 1fr)); */
.grid-cols-3 /* grid-template-columns: repeat(3, minmax(0, 1fr)); */
.grid-cols-4 /* grid-template-columns: repeat(4, minmax(0, 1fr)); */
.grid-cols-5 /* grid-template-columns: repeat(5, minmax(0, 1fr)); */
.grid-cols-6 /* grid-template-columns: repeat(6, minmax(0, 1fr)); */
.grid-cols-7 /* grid-template-columns: repeat(7, minmax(0, 1fr)); */
.grid-cols-8 /* grid-template-columns: repeat(8, minmax(0, 1fr)); */
.grid-cols-9 /* grid-template-columns: repeat(9, minmax(0, 1fr)); */
.grid-cols-10 /* grid-template-columns: repeat(10, minmax(0, 1fr)); */
.grid-cols-11 /* grid-template-columns: repeat(11, minmax(0, 1fr)); */
.grid-cols-12 /* grid-template-columns: repeat(12, minmax(0, 1fr)); */
.grid-cols-none /* grid-template-columns: none; */
2020-03-29 10:51:33 +00:00
/*
* Grid Column Start / End
2020-03-29 13:22:43 +00:00
* --------------------
* Utilities for controlling how elements are sized and placed across grid columns.
* By default, only responsive variants are generated for grid-column utilities.
*/
.col-auto /* grid-column: auto; */
.col-span-1 /* grid-column: span 1 / span 1; */
.col-span-2 /* grid-column: span 2 / span 2; */
.col-span-3 /* grid-column: span 3 / span 3; */
.col-span-4 /* grid-column: span 4 / span 4; */
.col-span-5 /* grid-column: span 5 / span 5; */
.col-span-6 /* grid-column: span 6 / span 6; */
.col-span-7 /* grid-column: span 7 / span 7; */
.col-span-8 /* grid-column: span 8 / span 8; */
.col-span-9 /* grid-column: span 9 / span 9; */
.col-span-10 /* grid-column: span 10 / span 10; */
.col-span-11 /* grid-column: span 11 / span 11; */
.col-span-12 /* grid-column: span 12 / span 12; */
.col-start-1 /* grid-column-start: 1; */
.col-start-2 /* grid-column-start: 2; */
.col-start-3 /* grid-column-start: 3; */
.col-start-4 /* grid-column-start: 4; */
.col-start-5 /* grid-column-start: 5; */
.col-start-6 /* grid-column-start: 6; */
.col-start-7 /* grid-column-start: 7; */
.col-start-8 /* grid-column-start: 8; */
.col-start-9 /* grid-column-start: 9; */
.col-start-10 /* grid-column-start: 10; */
.col-start-11 /* grid-column-start: 11; */
.col-start-12 /* grid-column-start: 12; */
.col-start-13 /* grid-column-start: 13; */
.col-start-auto /* grid-column-start: auto; */
.col-end-1 /* grid-column-end: 1; */
.col-end-2 /* grid-column-end: 2; */
.col-end-3 /* grid-column-end: 3; */
.col-end-4 /* grid-column-end: 4; */
.col-end-5 /* grid-column-end: 5; */
.col-end-6 /* grid-column-end: 6; */
.col-end-7 /* grid-column-end: 7; */
.col-end-8 /* grid-column-end: 8; */
.col-end-9 /* grid-column-end: 9; */
.col-end-10 /* grid-column-end: 10; */
.col-end-11 /* grid-column-end: 11; */
.col-end-12 /* grid-column-end: 12; */
.col-end-13 /* grid-column-end: 13; */
.col-end-auto /* grid-column-end: auto; */
2020-03-29 10:51:33 +00:00
/*
* Grid Template Rows
2020-03-29 13:22:43 +00:00
* --------------------
* Utilities for specifying the rows in a grid layout.
* By default, only responsive variants are generated for grid-template-rows utilities.
2020-03-29 10:51:33 +00:00
*/
2020-03-29 13:22:43 +00:00
.grid-rows-1 /* grid-template-rows: repeat(1, minmax(0, 1fr)); */
.grid-rows-2 /* grid-template-rows: repeat(2, minmax(0, 1fr)); */
.grid-rows-3 /* grid-template-rows: repeat(3, minmax(0, 1fr)); */
.grid-rows-4 /* grid-template-rows: repeat(4, minmax(0, 1fr)); */
.grid-rows-5 /* grid-template-rows: repeat(5, minmax(0, 1fr)); */
.grid-rows-6 /* grid-template-rows: repeat(6, minmax(0, 1fr)); */
.grid-rows-none /* grid-template-rows: none; */
2020-03-29 10:51:33 +00:00
/*
* Grid Row Start / End
2020-03-29 13:22:43 +00:00
* --------------------
* Utilities for controlling how elements are sized and placed across grid rows.
* By default, only responsive variants are generated for grid-row utilities.
*/
.row-auto /* grid-row: auto; */
.row-span-1 /* grid-row: span 1 / span 1; */
.row-span-2 /* grid-row: span 2 / span 2; */
.row-span-3 /* grid-row: span 3 / span 3; */
.row-span-4 /* grid-row: span 4 / span 4; */
.row-span-5 /* grid-row: span 5 / span 5; */
.row-span-6 /* grid-row: span 6 / span 6; */
.row-start-1 /* grid-row-start: 1; */
.row-start-2 /* grid-row-start: 2; */
.row-start-3 /* grid-row-start: 3; */
.row-start-4 /* grid-row-start: 4; */
.row-start-5 /* grid-row-start: 5; */
.row-start-6 /* grid-row-start: 6; */
.row-start-7 /* grid-row-start: 7; */
.row-start-auto /* grid-row-start: auto; */
.row-end-1 /* grid-row-end: 1; */
.row-end-2 /* grid-row-end: 2; */
.row-end-3 /* grid-row-end: 3; */
.row-end-4 /* grid-row-end: 4; */
.row-end-5 /* grid-row-end: 5; */
.row-end-6 /* grid-row-end: 6; */
.row-end-7 /* grid-row-end: 7; */
.row-end-auto /* grid-row-end: auto; */
2020-03-29 10:51:33 +00:00
/*
* Gap
2020-03-29 13:22:43 +00:00
* --------------------
* Utilities for controlling gutters between grid rows and columns.
* By default, no responsive, hover, focus, active, or group-hover variants are generated for gap utilities.
*/
.gap-0 /* gap: 0; */
.gap-1 /* gap: 0.25rem; */
.gap-2 /* gap: 0.5rem; */
.gap-3 /* gap: 0.75rem; */
.gap-4 /* gap: 1rem; */
.gap-5 /* gap: 1.25rem; */
.gap-6 /* gap: 1.5rem; */
.gap-8 /* gap: 2rem; */
.gap-10 /* gap: 2.5rem; */
.gap-12 /* gap: 3rem; */
.gap-16 /* gap: 4rem; */
.gap-20 /* gap: 5rem; */
.gap-24 /* gap: 6rem; */
.gap-32 /* gap: 8rem; */
.gap-40 /* gap: 10rem; */
.gap-48 /* gap: 12rem; */
.gap-56 /* gap: 14rem; */
.gap-64 /* gap: 16rem; */
.gap-px /* gap: 1px; */
.row-gap-0 /* row-gap: 0; */
.row-gap-1 /* row-gap: 0.25rem; */
.row-gap-2 /* row-gap: 0.5rem; */
.row-gap-3 /* row-gap: 0.75rem; */
.row-gap-4 /* row-gap: 1rem; */
.row-gap-5 /* row-gap: 1.25rem; */
.row-gap-6 /* row-gap: 1.5rem; */
.row-gap-8 /* row-gap: 2rem; */
.row-gap-10 /* row-gap: 2.5rem; */
.row-gap-12 /* row-gap: 3rem; */
.row-gap-16 /* row-gap: 4rem; */
.row-gap-20 /* row-gap: 5rem; */
.row-gap-24 /* row-gap: 6rem; */
.row-gap-32 /* row-gap: 8rem; */
.row-gap-40 /* row-gap: 10rem; */
.row-gap-48 /* row-gap: 12rem; */
.row-gap-56 /* row-gap: 14rem; */
.row-gap-64 /* row-gap: 16rem; */
.row-gap-px /* row-gap: 1px; */
.col-gap-0 /* column-gap: 0; */
.col-gap-1 /* column-gap: 0.25rem; */
.col-gap-2 /* column-gap: 0.5rem; */
.col-gap-3 /* column-gap: 0.75rem; */
.col-gap-4 /* column-gap: 1rem; */
.col-gap-5 /* column-gap: 1.25rem; */
.col-gap-6 /* column-gap: 1.5rem; */
.col-gap-8 /* column-gap: 2rem; */
.col-gap-10 /* column-gap: 2.5rem; */
.col-gap-12 /* column-gap: 3rem; */
.col-gap-16 /* column-gap: 4rem; */
.col-gap-20 /* column-gap: 5rem; */
.col-gap-24 /* column-gap: 6rem; */
.col-gap-32 /* column-gap: 8rem; */
.col-gap-40 /* column-gap: 10rem; */
.col-gap-48 /* column-gap: 12rem; */
.col-gap-56 /* column-gap: 14rem; */
.col-gap-64 /* column-gap: 16rem; */
.col-gap-px /* column-gap: 1px; */
2020-03-29 10:51:33 +00:00
/*
* Grid Auto Flow
2020-03-29 13:22:43 +00:00
* --------------------
* Utilities for controlling how elements in a grid are auto-placed.
* By default, only responsive variants are generated for grid-auto-flow utilities.
2020-03-29 10:51:33 +00:00
*/
2020-03-29 13:22:43 +00:00
.grid-flow-row /* grid-auto-flow: row; */
.grid-flow-col /* grid-auto-flow: column; */
.grid-flow-row-dense /* grid-auto-flow: row dense; */
.grid-flow-col-dense /* grid-auto-flow: column dense; */
2020-03-29 10:51:33 +00:00
/* *******************************************************************************************
2020-03-29 10:34:47 +00:00
* SPACING
* ******************************************************************************************* */
2020-03-29 10:51:33 +00:00
/*
* Padding
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* Margin
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/* *******************************************************************************************
2020-03-29 10:34:47 +00:00
* SIZING
* ******************************************************************************************* */
2020-03-29 10:51:33 +00:00
/*
* Width
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* Min-Width
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* Max-Width
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* Height
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* Min-Height
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* Max-Height
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/* *******************************************************************************************
2020-03-29 10:34:47 +00:00
* TYPOGRAPHY
* ******************************************************************************************* */
2020-03-29 10:51:33 +00:00
/*
* Font Family
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* Font Size
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* Font Smoothing
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* Font Style
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* Font Weight
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* Letter Spacing
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* Line Height
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* List Style Type
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* List Style Position
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* Placeholder Color
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* Text Align
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* Text Color
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* Text Decoration
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* Text Transform
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* Vertical Align
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* Whitespace
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* Word Break
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/* *******************************************************************************************
2020-03-29 10:34:47 +00:00
* BACKGROUNDS
* ******************************************************************************************* */
2020-03-29 10:51:33 +00:00
/*
* BACKGROUND ATTACHMENT
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* BACKGROUND COLOR
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* BACKGROUND POSITION
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* BACKGROUND REPEAT
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* BACKGROUND SIZE
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/* *******************************************************************************************
2020-03-29 10:34:47 +00:00
* BORDERS
* ******************************************************************************************* */
2020-03-29 10:51:33 +00:00
/*
* BORDER COLOR
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* BORDER STYLE
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* BORDER WIDTH
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* BORDER RADIUS
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/* *******************************************************************************************
2020-03-29 10:34:47 +00:00
* TABLES
* ******************************************************************************************* */
2020-03-29 10:51:33 +00:00
/*
* BORDER COLLAPSE
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* TABLE LAYOUT
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/* *******************************************************************************************
2020-03-29 10:34:47 +00:00
* EFFECTS
* ******************************************************************************************* */
2020-03-29 10:51:33 +00:00
/*
* BOX SHADOW
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
2020-03-29 10:34:47 +00:00
2020-03-29 10:51:33 +00:00
/*
* OPACITY
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
2020-03-29 10:34:47 +00:00
2020-03-29 10:51:33 +00:00
/* *******************************************************************************************
2020-03-29 10:34:47 +00:00
* TRANSITIONS
* ******************************************************************************************* */
2020-03-29 10:51:33 +00:00
/*
* TRANSITION PROPERTY
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* TRANSITION DURATION
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* TRANSITION TIMING FUNCTION
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/* *******************************************************************************************
2020-03-29 10:34:47 +00:00
* TRANSFORMS
* ******************************************************************************************* */
2020-03-29 10:51:33 +00:00
/*
* SCALE
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* ROTATE
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* TRANSLATE
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* SKEW
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* TRANSFORM ORIGIN
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/* *******************************************************************************************
2020-03-29 10:34:47 +00:00
* INTERACTIVITY
* ******************************************************************************************* */
2020-03-29 10:51:33 +00:00
/*
* APPEARANCE
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* CURSOR
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* OUTLINE
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* POINTER EVENTS
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* RESIZE
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* USER SELECT
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/* *******************************************************************************************
2020-03-29 10:34:47 +00:00
* SVG
* ******************************************************************************************* */
2020-03-29 10:51:33 +00:00
/*
* FILL
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* STROKE
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/*
* STROKE WIDTH
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
/* *******************************************************************************************
2020-03-29 10:34:47 +00:00
* ACCESSIBILITY
* ******************************************************************************************* */
2020-03-29 10:51:33 +00:00
/*
* SCREEN READERS
2020-03-29 13:22:43 +00:00
* --------------------
2020-03-29 10:51:33 +00:00
*
*
*/
2020-03-29 10:34:47 +00:00