1 Star 0 Fork 0

artdong/d3

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.css 3.51 KB
一键复制 编辑 原始数据 按行查看 历史
alex 提交于 2018-10-19 14:17 . init
body
{
background-color: #eeeeee;
background-image: url("white-pixels.png");
background-repeat: repeat; /* repeat, no-repeat */
background-attachment: fixed; /* scroll, fixed */
background-position: top left; /* for no-repeat setting: top/bottom, left/right */
margin: 2% 5% 0% 5%; /* top, left, bottom, right or TRBL */
font-family: Georgia, Serif; /* list font names in order of preference */
font-weight: normal; /* normal, bold */
font-style: normal; /* normal, italic */
font-variant: normal; /* normal, small-caps */
font-size: 16px; /* font size */
color: #000000; /* hexadecimal RGB color code */
text-decoration: none; /* none, underline, overline, line-through */
text-align: left; /* left, right, center, justify */
}
.fancy
{
min-height: 150px;
/* next two lines for elder IE compatibility */
height: auto !important;
height: 150px;
/* Background color and gradients */
background: #eeeeee;
background: -moz-linear-gradient(top, #ffffff, #cccccc);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffffff), to(#cccccc));
/* really nifty translucence */
background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.8), rgba(200, 200, 200, 0.8) );
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from( rgba(255, 255, 255, 0.8) ), to( rgba(200, 200, 200, 0.8) ));
/* Rounded corners */
-moz-border-radius: 15px 15px 15px 15px;
-webkit-border-radius: 15px 15px 15px 15px;
border-radius: 15px 15px 15px 15px;
}
/* Page text links */
a
{
font-size: 20px;
font-weight: bold;
font-variantx: small-caps;
color:#00c;
text-shadow: 1px 1px 0px #aaa;
margin: 13px 0px 0px 0px;
text-decoration: none;
-webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
-o-transition: all 300ms ease-in-out;
-ms-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
}
.toc
{
font-size: 16px;
}
a:hover
{
color:#c00;
/*text-shadow: 1px 1px 0px #f00;
/* gradual change */
-webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
-o-transition: all 300ms ease-in-out;
-ms-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
}
.superText
{
color: #000;
text-shadow: 1px 1px 0px #aaa;
}
a .superImage
{
height: 148px;
border: 1px solid #000000;
margin: 0px 20px 0px 0px;
float:left;
/* Rounded corners */
-moz-border-radius: 15px 15px 15px 15px;
-webkit-border-radius: 15px 15px 15px 15px;
border-radius: 15px 15px 15px 15px;
position: relative;
-webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
-o-transition: all 300ms ease-in-out;
-ms-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
}
a:hover .superImage
{
top: -10px;
/* fallback on standard opaque colors */
-moz-box-shadow: 10px 10px 5px #888;
-webkit-box-shadow: 10px 10px 5px #888;
box-shadow: 10px 10px 5px #888;
/* translucent: the way shadows should be */
-moz-box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.5);
box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.5);
-webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
-o-transition: all 300ms ease-in-out;
-ms-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
}
.bigTitle
{
font-size: 32px;
font-weight: bold;
font-variantx: small-caps;
color:#004;
text-align: center;
text-shadow: -1px -1px 2px #fff, 1px 1px 3px #000;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/artdong/d3.git
git@gitee.com:artdong/d3.git
artdong
d3
d3
master

搜索帮助