0
点赞
收藏
分享

微信扫一扫

【00】神经网络之初始化参数

時小白 2023-10-17 阅读 30
css前端

更换前

longin.html 

 

style.css

*{
    margin: 0;
    padding: 0;
}
body{
    background: #f3f3f3;
}
.control{
    width: 340px;
    background: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 5px;
}
.item{
    width: 340px;
    height: 60px;
    background: #eeeeee;
}
.item div{
    width: 340px;
    height: 60px;
    display: inline-block;
    color: black;
    font-size: 18px;
    text-align: center;
    line-height: 60px;
    cursor: pointer;
}
.content{
    width: 100%;
}
.content div{
    margin: 20px 30px;
    display: none;
    text-align: left;
}
p{
    color: #4a4a4a;
    margin-top: 30px;
    margin-bottom: 6px;
    font-size: 15px;
}
.content input[type="text"], .content input[type="password"]{
    width: 100%;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #adadad;
    padding: 0 10px;
    box-sizing: border-box;
}
.content input[type="submit"]{
    margin-top: 40px;
    width: 100%;
    height: 40px;
    border-radius: 5px;
    color: white;
    border: 1px solid #adadad;
    background: cyan;
    cursor: pointer;
    letter-spacing: 4px;
    margin-bottom: 40px;
}
.active{

    background: white;
}
.item div:hover{
    background: #f6f6f6;
}

 如果我们要更改登录框后面的背景颜色

#65cea7

更换后

 

字体颜色代码:

                              

白色#FFFFFF 红色#FF0000    绿色#00FF00 蓝色#0000F  青色#00FFFF    
黄色#FFFF00      黑色#000000棕色#A67D3D金色#CD7F32灰色#C0C0C0
青黄色#93DB70牡丹红#FF00FF海蓝#70DB93蓝紫色#9F5F9F亮金色#D9D919
巧克力色#5C3317珊瑚红#FF7F00黄铜色#B5A642深绿#2F4F2F青铜色#8C7853
紫蓝色#42426F深绿松石色#7093DB深棕#5C4033淡灰色#545454浅蓝色#C0D9D9
森林绿#238E23深紫色#871F78深橄榄绿#4F4F2F浅灰色#A8A8A8桔黄色#E47833
海蓝色#32CD99橙色#FF7F00淡紫色#DB70DB浅绿色#8FBC8F粉红色#BC8F8F
银色#E6E8FA天蓝#3299CC

黄绿色#99CC32

海军蓝#23238E紫罗兰色#4F2F4F

举报

相关推荐

0 条评论