Personal blog optimization

Two days before the search data, it was found design freedom garden blog pretty high, so immediately after the application by today excitedly to fiddle.
To see people say this dress qq space and ten years ago, I think ha ha ha ha ha ha ha, he said, quite right.
A pair of change-while-write, I would like to have the opportunity to be a live2D of billboards Niang it.

2020/02/09

  • font-family
  • font-size
  • letter-spacing
  • color
  • a:hover

The first is the font, I searched a bit css commonly used fonts, this reference: css common font-family
can see the list of fonts is not much Annie, I chose 'Chinese Song' and 'Annie Di Tang toward the new body' but Tang body does not find the corresponding English name.
Provides a method to find here: Open Annie fonts official website, search for new Di Tang Han-yi towards the body, and then select the font preview picture viewer. Picture above address will be able to find the font's English name.

Then also adjust the font size, color, character pitch. Mouse over the link can change color.
Calendar default font is Arial, unified into Chinese Song, and changed a bit the highlight color.
Preview the overall effect:

body{
    font-family:'STZhongsong';
    font-size: 16px;
}

#header{
    text-align:center;
}

#Header1_HeaderTitle{
    font-size:48px;
    font-family:'SentyTang';
    letter-spacing:15px;
    color: powderblue;
}

a:visited, a:active, a:link{
    color:skyblue;
   font-size:16px;
}
a:hover{
    color:pink;
}

.Cal{
    font-family:'STZhongsong';
}
.CalTitle {
    font-family:'STZhongsong';
    font-size: 16px;
    color:skyblue;
}
.CalTodayDay {
    color:  #c0272775;
}

Guess you like

Origin www.cnblogs.com/shisoco/p/12287330.html