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的更多相关文章
随机推荐
- 留下来做项目经理还是跳槽学Java
毕业两年了,曾经给自己计划工作两年后跳一次槽,去尝试学习更多的东西.2012年7月5日入职,现在整整两年,最近面临这样的一个抉择:是留在公司继续做项目经理,还是跳槽去学习Java. 我的基本情况:本科 ...
- 官方 NSIS 插件全集简单介绍
Math plugin (contain examples) -- 数学函数插件,NSIS 软件已包含,这个不用说了吧,计算的时候必用. System plugin (contain examples ...
- [转] Linux 句柄是什么 ?
源地址:http://www.blogjava.net/shijian/archive/2012/04/06/373463.html 1.句柄就是一个标识符,只要获得对象的句柄,我们就可以对对象进行任 ...
- 3377加减乘除等于24(原生js实现)
<!doctype html> <html> <head> <meta charset="utf-8"> <title> ...
- Jmeter运行原理
Jmeter运行原理: JMETER是运行在JVM虚拟机上的,每个进程的开销比loadrunner的进程开销大,如果以进程的方式来运行每台负载机上的进程数量不会允许太多,当有大量并发时就需要大量的负载 ...
- Linux内核源码真是个好东西
我突然发现,我是这么爱Linux内核源码.... 真幸福死了.... int vsprintf(char *buf, const char *fmt, va_list args) 这函数的实现 ...
- uwsgi: invalid option -- 'x'
安装:pip install uwsgi 启动:uwsgi -x 'uwsgi.xml'报错:uwsgi: invalid option -- 'x' 原因:centos下,在没有安装libxml2时 ...
- PHP--年龄转生日、生日转年龄
/** * 年龄转生日(模糊结果) * @parameter int age(年龄) * @parameter string symbol(分隔符) * @return string (yyyy*mm ...
- HDU1709
/* * 好奇怪的母函数 */ #include<cstdio> #include<cstring> #include<cmath> #include<a ...
- PHP的安全性问题,你能说得上几个?
一.SQL注入 所谓SQL注入,就是通过把SQL命令插入到Web表单提交或输入域名或页面请求的查询字符串,最终达到欺骗服务器执行恶意的SQL命令.具体来说,它是利用现有应用程序,将(恶意)的SQL命令 ...