42 lines
468 B
CSS
42 lines
468 B
CSS
@import './base.css';
|
|
|
|
:root {
|
|
--header-height: 60px;
|
|
}
|
|
|
|
/* layout */
|
|
|
|
.layout-container {
|
|
width: 100%;
|
|
padding: 0px 30px;
|
|
background-color: #FAFCFD;
|
|
|
|
h2 {
|
|
margin: 20px 0 10px 0;
|
|
}
|
|
}
|
|
|
|
.iconfont {
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
|
|
&.icon-10 {
|
|
width: 10px;
|
|
height: 10px;
|
|
}
|
|
|
|
&.icon-16 {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
|
|
&.icon-20 {
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
|
|
&.icon-24 {
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
} |