When cnblogs was just launched, I was always a little dissatisfied when I wanted to find a few satisfactory skins. I saw that the background supported CSS custom styles and HTML and started to transform a satisfactory skin imetro.
This skin is good, but the font looks too big and abrupt. Although it looks pretty after a glance, it will make people feel depressed and confused after a long time.
Another important drawback is that the reading area is too small by default, which leads to a serious bug where the display is incomplete. You can only drag the scroll bar, so it is necessary to modify the topic.
Here, we use the developer tools of webki to find the CSS styles that control these divs, and then modify them.
This tool is very practical and convenient, and can easily chase all CSS Control Div, and can directly modify CSS and other labels, the tool can directly change the client page in real time based on the modified elements.
Therefore, you can adjust the parameters to view the effect at will before entering the background CSS to add a style.
CSS parameters in this blog (changed according to imetro)
The main navigation word is reduced, and the page transparency is added. The background is changed and the reading area is increased by PX.
# Main {
Font-size: 11px;
}
# Home {
Font-size: 8px;
Opacity: 0.95;
Width: 1024px;
}
# Sidebar {
Font-size: 10px;
}
Body {
Background-image: URL ("http://p13.freep.cn/p.aspx? U=v20_p13_photo_1203072250411932_0.jpg ");
}
# Maincontent {
Width: 750px;
}
The added results are shown in this blog.