Last change
on this file since fa375fe was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
585 bytes
|
Line | |
---|
1 |
|
---|
2 | /*!
|
---|
3 | * Stylus - units
|
---|
4 | * Copyright (c) Automattic <developer.wordpress.com>
|
---|
5 | * MIT Licensed
|
---|
6 | */
|
---|
7 |
|
---|
8 | // units found in http://www.w3.org/TR/css3-values
|
---|
9 |
|
---|
10 | module.exports = [
|
---|
11 | 'em', 'ex', 'ch', 'rem' // relative lengths
|
---|
12 | , 'vw', 'vh', 'vmin', 'vmax' // relative viewport-percentage lengths
|
---|
13 | , 'cm', 'mm', 'in', 'pt', 'pc', 'px' // absolute lengths
|
---|
14 | , 'deg', 'grad', 'rad', 'turn' // angles
|
---|
15 | , 's', 'ms' // times
|
---|
16 | , 'Hz', 'kHz' // frequencies
|
---|
17 | , 'dpi', 'dpcm', 'dppx', 'x' // resolutions
|
---|
18 | , '%' // percentage type
|
---|
19 | , 'fr' // grid-layout (http://www.w3.org/TR/css3-grid-layout/)
|
---|
20 | ];
|
---|
Note:
See
TracBrowser
for help on using the repository browser.