38 lines
572 B
CSS
38 lines
572 B
CSS
|
|
/**
|
|
* Web唐明明
|
|
* 匆匆数载恍如梦,岁月迢迢华发增。
|
|
* 碌碌无为枉半生,一朝惊醒万事空。
|
|
*/
|
|
|
|
body {
|
|
font-size: 14px;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.header{
|
|
background: #222;
|
|
color: white;
|
|
height: 34px;
|
|
line-height: 34px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.header span,
|
|
.header a{
|
|
padding: 0 10px;
|
|
display: inline-block;
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.header-app{
|
|
border-right: solid 1px #3a3a3a;
|
|
}
|
|
|
|
.header-product{
|
|
border-left: solid 1px #3a3a3a;
|
|
}
|