23 lines
204 B
CSS
23 lines
204 B
CSS
/* 存放公共css的 */
|
|
.theme_red {
|
|
color: blue;
|
|
}
|
|
|
|
.left {
|
|
float: left;
|
|
}
|
|
|
|
.right {
|
|
float: right;
|
|
}
|
|
|
|
.w-1200 {
|
|
width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.center {
|
|
text-align: center;
|
|
}
|
|
|