blogbeta1
//html
<!DOCTYPE html>
blog
2019/11/16
#露出
#滴蜡
2019/11/16
#露出
#滴蜡
2019/11/16
#露出
#滴蜡
2019/11/16
#露出
#滴蜡
2019/11/16
#露出
#滴蜡
2019/11/16
#露出
#滴蜡
2019/11/16
#露出
#滴蜡
2019/11/16
#露出
#滴蜡
2019/11/16
#露出
#滴蜡
2019/11/16
#露出
#滴蜡
2019/11/16
#露出
#滴蜡
2019/11/16
#露出
#滴蜡
//css
/通用样式/
body {
margin: 0;
background: #eeeeee;
}
a {
text-decoration: none;
}
ul {
list-style-type: none;
}
/左/
.blog_left {
float: left;
width: 25%;
height: 100%;
background: #4e4e4e;
position: fixed;
top: 0;
left: 0;
}
.picture {
border: 5px solid white;
border-radius: 50%;
height: 150px;
width: 150px;
margin: 20px auto;
overflow: hidden;
}
.picture img {
width: 100%;
background-position: 100px,100px;
}
.info {
font-size: 14px;
color: darkgray;
text-align: center;
}
.motto {
font-size: 14px;
color: #277a23;
text-align: center;
}
.about_me {
font-size: 14px;
color: #3b43a9;
text-align: center;
}
.signal {
font-size: 14px;
color: #3b43a9;
text-align: center;
}
/右/
.blog_right {
float: right;
width: 75%;
height: 100px;
}
.shang {
background-color: white;
margin: 20px 40px 20px 10px;
box-shadow: 5px 5px 5px rgba(129,70,34,0.8);
}
.shang .title {
font-size: 36px;
margin-left: 18px;
}
.shang .date {
float: right;
margin: 20px;
}
.zhong {
text-indent: 25px;
}
.xia {
padding: 10px 20px 10px 20px;
}
blogbeta1的更多相关文章
随机推荐
- 【python之路46】内置函数2,是【python之路18】的补充
将3.5版本中的68个内置函数,按顺序逐个进行了自认为详细的解析.为了方便记忆,将这些内置函数进行了如下分类: 数学运算(7个) 类型转换(24个) 序列操作(8个) 对象操作(7个) 反射操作(8个 ...
- git异常处理(一)
请输入提交消息来解释为什么这种合并是必要的 git 在pull或者合并分支的时候有时会遇到这个界面.可以不管(直接下面3,4步),如果要输入解释的话就需要: 1.按键盘字母 i 进入insert模式 ...
- 装配SpringBean(五)--注解装配之自动装配
在spring ioc容器中,spring要先完成bean的定义和生成,然后需要需要注入的资源,在上一篇的扫描组件中就是这样实现的.而自动装配中我们只需要定义和生成一个bean,发现bean的过程将由 ...
- PL/SQl连接数据库ORA-12154错误
先说说我遇到的问题: 1.在sql/plus下可以正确连接到数据库(oracle10g): 2.检查我机器(64)位环境变量的配置,没问题.path环境变量没问题(C:\oraclexe\app\or ...
- js 中直接调用和new的区别
var test = new Test(); // 这里的 test 是什么? 是一个 Test 对象吗?错!这里 test 是一个函数——Test 中返回的 function() { return ...
- CSS3画图
众所周知,用CSS3的圆角.转换可以画出各种不同的形状,制作不同的图案,早些前先驱者已画出经典的叮当猫,iphone手机等展示CSS3的强大实力,趁最近有空我也对CSS3进行了一些实践,颇有收获. 用 ...
- HDFS写数据的过程
- 【vue】vue-znly
老规矩,放下博主的项目地址:https://github.com/wohaiwo/vue-znly 我一直在想给那些开源者取什么名字比较好,怎样才对得起他们开源项目的精神,后来想想,还是叫博主吧.有的 ...
- HDU3486 RMQ
/*多么变态的一道题,交了18次*/ #include<cstdio> #include<cstring> #include<cmath> #define max( ...
- Leetcode16.3Sum Closest最接近的三数之和
给定一个包括 n 个整数的数组 nums 和 一个目标值 target.找出 nums 中的三个整数,使得它们的和与 target 最接近.返回这三个数的和.假定每组输入只存在唯一答案. 例如,给定数 ...