博客列表 >使用flex改写phpcnUI—php九期

使用flex改写phpcnUI—php九期

曾龙宇
曾龙宇原创
2019年11月10日 21:47:31438浏览

一、

* {
    margin: 0;
    padding: 0;
}
body {
    height: 100vh;
    background-color: white;
    display: flex;
    flex-flow: column nowrap;
}
a {
    text-decoration: none;
    color: black;
}
header {
    height: 57px;
    background-color: #D4D4D4;
    display: flex;
    flex-flow: row nowrap;
}
header > h1 {
    font-size: 28px;
    padding: 10px;
}
header > h1:first-of-type {
    color: coral;
    margin-left: 30px;
    text-shadow: 2px 1px 1px #333;
}
header > h1:last-of-type {
    color: grey;
    font-weight: lighter;
}
main {
    display: flex;
    flex-flow: row nowrap;
}
main > aside {
    box-sizing: border-box;
    width: 250px;
    background-color: #EEEEEE;
    display: flex;
    flex-flow: column nowrap;
    padding: 20px;
    font-size: 14px;
}

aside li {
    list-style: none;
    margin-top: 5px;
    position: relative;
    left: 20px;
}
main > aside > div {
    position: relative;
    top: 45px;
}

main > article {
    flex: 1;
}

blob.png


IMG_0751.JPG

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议