UNPKG
ts-npm-init
Version:
latest (0.1.0)
0.1.0
创建TypeScript NPM库的现代化模板
ts-npm-init
/
templates
/
src
/
styles
/
style.css
19 lines
(16 loc)
•
364 B
CSS
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/** * 示例CSS文件 * 这个文件展示了如何在项目中使用CSS */
.example-class
{
color
:
#3498db
;
font-size
:
16px
;
display
: flex;
justify-content
: center;
transition
: all
0.3s
ease; }
.example-class
:hover
{
color
:
#e74c3c
;
transform
:
scale
(
1.1
); }
/* 带浏览器前缀的CSS属性将被autoprefixer自动处理 */