前端练习 模拟博客园页面搭建

完成效果

blog.css

/*这是一个博客园首页的样式表*/
/*通用样式*/
body{
    margin: 0;
    background-color: #eeeeee;
}
a{
    text-decoration: none;  /*取消下划线*/
}
ul{
    list-style-type:none;
    padding-left: 0;
}
.clearfix:after{    /*防止父标签塌陷*/
    content:‘‘;
    display: block;
    clear:both;
}
.blog-left{
    float: left;
    background-color: #4e4e4e;
    position: fixed;
    width: 20%;
    height: 100%;
}
.blog-image{
    height: 200px;
    width: 200px;
    border-radius: 50%;
    border: 5px solid white;
    overflow: hidden;
    margin: 20px auto;  /*auto自动居中*/
}
.blog-image img{
    max-width: 100%;    /*图片全部显示*/
}
.blog-title,.blog-info{
    color: darkgray;
    font-size: 18px;
    text-align: center;
}
.blog-link a,.blog-tag a{
    color: darkgray;
    font-size: 24px;
}
.blog-link a:hover,.blog-tag a:hover{ /*鼠标移到链接上*/
    color: white;
}
.blog-link ul,.blog-tag ul{
    text-align: center;
    margin:80px 0;
}
/*右侧样式*/
.blog-right{
    float: right;
    width: 80%;
}
.article-list{
    background-color: white;
    margin: 20px 40px 10px 10px;
    box-shadow: rgba(128,128,128,0.6) 5px 5px 10px;
    /*设置阴影  水平阴影位置  垂直阴影位置  模糊距离*/
}
.article-list .date{
    float: right;
    font-size: 20px;
    margin: 10px 20px;
}
.article-list .title{
    font-size: 38px;
}
.article-title{
    border-left:5px solid red;
    text-indent: 14px;
}
.article-content{
    font-size: 20px;
    text-indent: 20px;
    border-bottom: 1px solid black;
}
.article-bottom{
    padding: 10px 10px 10px 20px;
}

博客园页面搭建.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>cnblog</title>
    <link rel="stylesheet" href="blog.css">
</head>
<body>
<div class="blog-left">
    <div class="blog-image">
        <img src="111.jpg" alt="">
    </div>
    <div class="blog-title">
        <p>LDC的博客</p>
    </div>
    <div class="blog-info">
        <p>这个人很帅,帅的什么都没有留下</p>
    </div>
    <div class="blog-link">
        <ul>
            <li><a href="">关于我</a></li>
            <li><a href="">微博</a></li>
            <li><a href="">微信公众号</a></li>
        </ul>
    </div>
        <div class="blog-tag">
        <ul>
            <li><a href="">#Python</a></li>
            <li><a href="">#Java</a></li>
            <li><a href="">#Golang</a></li>
        </ul>
    </div>
</div>
<div class="blog-right">
    <div class="article-list">
        <div class="article-title">
            <span class="title">追求性能</span>
            <span class="date">2019-12-29</span>
        </div>
        <div class="article-content">
            <p>双通道,多核,超频,水冷</p>
        </div>
        <div class="article-bottom">
            <span>#Python</span>
            <span>#JavaScript</span>
        </div>
    </div>
    <div class="article-list">
        <div class="article-title">
            <span class="title">追求性能</span>
            <span class="date">2019-12-29</span>
        </div>
        <div class="article-content">
            <p>双通道,多核,超频,水冷</p>
        </div>
        <div class="article-bottom">
            <span>#Python</span>
            <span>#JavaScript</span>
        </div>
    </div>
    <div class="article-list">
        <div class="article-title">
            <span class="title">追求性能</span>
            <span class="date">2019-12-29</span>
        </div>
        <div class="article-content">
            <p>双通道,多核,超频,水冷</p>
        </div>
        <div class="article-bottom">
            <span>#Python</span>
            <span>#JavaScript</span>
        </div>
    </div>
    <div class="article-list">
        <div class="article-title">
            <span class="title">追求性能</span>
            <span class="date">2019-12-29</span>
        </div>
        <div class="article-content">
            <p>双通道,多核,超频,水冷</p>
        </div>
        <div class="article-bottom">
            <span>#Python</span>
            <span>#JavaScript</span>
        </div>
    </div>
    <div class="article-list">
        <div class="article-title">
            <span class="title">追求性能</span>
            <span class="date">2019-12-29</span>
        </div>
        <div class="article-content">
            <p>双通道,多核,超频,水冷</p>
        </div>
        <div class="article-bottom">
            <span>#Python</span>
            <span>#JavaScript</span>
        </div>
    </div>
</div>
</body>
</html>

原文地址:https://www.cnblogs.com/ludingchao/p/12116836.html

时间: 2024-11-08 01:20:04

前端练习 模拟博客园页面搭建的相关文章

使用python selenium-webdriver模拟博客园登录

初学python,最近在抱着虫师的python+selenium自动化的书看,也尝试写个登录功能的验证2333 code:########################## #使用python selenium-webdriver #模拟博客园的登录流程 #首页--登录页面--跳转回首页--检查--退出登录恢复环境 ########################### from selenium import webdriver import time import sys url_cnbl

python简单模拟博客园系统

# 用代码模拟博客园系统## 项目分析:# 1.首先程序启动,显示下面内容供用户选择:## 1.请登录# 2.请注册# 3.进入文章页面# 4.进入评论页面# 5.进入日记页面# 6.进入收藏页面# 7.注销账号# 8.退出整个程序# 2.必须实现的功能:## 1.注册功能要求:# a.用户名.密码要记录在文件中.# b.用户名要求:不能有特殊字符并且确保用户名唯一.# c.密码要求:长度要在6~14个字符之间.## 2.登录功能要求:# a.用户输入用户名.密码进行登录验证.# b.登录成功之

博客园页面定制CSS代码

博客园页面定制CSS代码 1 #home { 2 margin: 0 auto; 3 width: 80%;/*原始65*/ 4 min-width: 980px;/*页面顶部的宽度*/ 5 background-color: rgba(245, 245, 245, 0.7); 6 padding: 30px; 7 margin-top: 50px; 8 margin-bottom: 50px; 9 box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);

博客园页面美化

对以前的我来说,我觉得博客只有自己搭建的才有页面美化,像博客园这样的可能没有.但是,突然有一天在我查资料的时候,发现了一篇很好看的博客,我就留意了一下他的域名,发现竟然是博客园的.就开始决定把自己的博客弄的好看一点. 关于博客应该如何去美化,我就不讲了,自己去设置里面看的到,之后开启过JS权限之后就可以开始自己的美化了. 关于我为啥要写这篇博客,主要原因是,网上关于博客美化的博客太散了,没有那种比较全面的讲解,于是我就想弄一个,以便后面的人做个参考. 首先是选择博客的皮肤: 毕竟自己不能从零开始

「奇技淫巧」博客园页面美化(差不多是划水

何为页面美化?永远没有止境的乱搞也.    ——hzz 教材: 博客园美化教程大集合----极致个性化你的专属博客(超详细,看这篇就够了) - 洪卫 - 博客园 原文地址:https://www.cnblogs.com/qwerta/p/9748410.html

python模拟博客园登录-基础版

mport timeimport inspectfrom functools import wrapsuser_status = {'username': None,'status': False} dic1 = { 1: '登录', 2: '注册', 3: '文章', 4: '日记', 5: '评论', 6: '收藏', 7: '注销', 8: '退出程序'} dic2 = { 3: 'artecle', 4: 'diary', 5: 'comment', 6: 'collection', 7

博客园页面定制

页面定制CSS代码 @font-face { font-family: 'FontAwesome'; font-style: normal; font-weight: normal; src: url("http://blog.zhaishidan.cn/css/font/fontawesome-webfont.eot?#iefix") format('embedded-opentype'), url("http://blog.zhaishidan.cn/css/font/f

利用装饰器模拟博客园登陆

import os # 登录状态 status_dic = { 'username': None, 'status': False } flag = True # 用户名,密码 以字典形式打开 def user_pwd(): with open("user", encoding="utf-8") as f: dic = {} for i in f: li = i.strip().split("|") dic[li[0].strip()] = li

模拟博客园系统

1. 启动程序, 显?菜单列表      菜单:      1. 登录      2. 注册      3. ?章      4. ?记      5. 退出 2. ?户输入选项, ?章和?记必须在登录后才可以进?操作.(装饰器) 3. ?户注册, 将?户名和密码写入到register?件中. 同时?成"article_?户名"?件?于 存储?户?章. 同时?成"diary_?户名" 来存储?户的?记内容. 4. ?户登录成功后, ?户名和密码从register?件