我的SimpleMemory主题的自定CSS

直接贴代码, 记录下来

 1 #home {
 2     margin: 0 auto;
 3     width: 80%;
 4     min-width: 950px;
 5     background-color: #ffffff;
 6     padding: 30px;
 7     margin-top: 10px;
 8     margin-bottom: 10px;
 9     box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
10 }
11 
12 #blogTitle h1 a {
13     color: #2375a5;
14     font-size: 42px;
15 }
16 
17 #blogTitle a:hover{
18     color: black;
19 }
20 
21 #navList {
22     min-height: 30px;
23     float: left;
24     padding-top: 10px;
25 }
26 
27 #navigator {
28     font-size: 18px;
29     border-bottom: 1px solid #ededed;
30     border-top: 1px solid #ededed;
31     height: 50px;
32     clear: both;
33     margin-top: 25px;
34 }
35 
36 #navList a:link, #navList a:visited, #navList a:active {
37     color: #2475a5;
38     font-weight: bold;
39 }
40 
41 #navList a {
42     display: block;
43     width: 5em;
44     height: 22px;
45     float: left;
46     text-align: center;
47     padding-top: 5px;
48     padding-bottom: 5px;
49 }
50 
51 #navList a:hover{
52     color: white;
53     background-color: black;
54 }
55 
56 #mainContent {
57     min-height: 200px;
58     padding: 0px 0px 10px 0;
59     -o-text-overflow: ellipsis;
60     text-overflow: ellipsis;
61     overflow: hidden;
62     float: right;
63     margin-left: -22em;
64     width: 100%;
65 }
66 
67 #sideBar {
68     margin-top: -15px;
69     width: 230px;
70     min-height: 200px;
71     padding: 0px 0 0px 5px;
72     float: left;
73     -o-text-overflow: ellipsis;
74     text-overflow: ellipsis;
75     overflow: hidden;
76 }
77 
78 .postTitle {
79     border-left: 5px solid #008200;
80     margin-bottom: 10px;
81     font-size: 28px;
82     float: right;
83     width: 100%;
84     clear: both;
85     background: -webkit-linear-gradient(left, #22282b80, rgba(0, 0, 0, 0));
86 }
87 
88 #topics .postTitle {
89     border: 0px;
90     font-size: 300%;
91     font-weight: bold;
92     float: left;
93     line-height: 1.5;
94     width: 65%;
95     padding-left: 5px;
96 }

猜你喜欢

转载自www.cnblogs.com/linxmouse/p/9218421.html