-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathv2ex.css
139 lines (134 loc) · 2.52 KB
/
v2ex.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/*超链接*/
a:link, a:visited, a:active {
color: #333;
}
#Top{
border:none;
margin: 10px;
}
#Wrapper {
background-color: #f6f8f9;
background-image: none;
}
/*广告*/
.sidebar_compliance {
background-color: #f2f2f2;
padding: 5px;
margin: 5px;
border-radius: 8px;
font-size: 10px;
}
.sidebar_compliance a{
color:#999;
}
.box{
border-radius:8px;
box-shadow: 0 0 6px 0 rgba(122,146,159,.1);
}
.box .inner{
border-top-left-radius: 8px !important;
border-top-right-radius: 8px !important;
}
/*设置最大宽度适合mbp访问*/
.content{
max-width: 1260px !important;
}
.header {
padding: 10px 20px;
}
.topic_content {
font-size: 14px;
line-height: 1.6;
color: #000;
word-wrap: break-word;
padding: 0px 10px;
}
/*标签*/
a.tab_current:link,
a.tab_current:visited,
a.tab_current:active {
padding: 5px 10px;
border-radius: 20px;
background-color: #1f1f20;
}
a.tab:link,
a.tab:visited,
a.tab:active {
padding: 5px 10px;
border-radius: 20px;
}
a.tab_current{
position: relative;
}
a.tab_current:after{
content: "";
position: absolute;
bottom: -6px;
left: 45%;
border: 4px solid transparent;
border-top-color: #1f1f20;
border-right-width: 2px;
}
/*头像*/
img.avatar {
width: 40px;
height: 40px;
max-width: 40px;
max-height: 40px;
border-radius: 50%;
box-shadow: 0 0 0 4px #fafafa;
}
img.avatar:hover {
box-shadow: 0 0 0 4px #efefef;
}
/*列表*/
.cell {
border-bottom: 1px solid #efefef;
padding: 10px 15px;
}
/*最后一行分页下面处理*/
.box > .cell:last-child {
border-radius: 8px;
}
/*列表回复气泡*/
a.count_livid:link,
a.count_livid:active {
position: relative;
font-weight: normal;
font-size: 10px;
background-color: #1f1f20;
padding: 5px 8px;
}
a.count_livid:link:after,
a.count_livid:active:after{
content:"";
position: absolute;
top:6px;
left:-6px;
border:4px solid transparent;
border-right-color:#1f1f20;
}
a.count_livid:hover {
font-weight: normal;
background-color: #1f1f20;
padding: 5px 8px;
}
a.count_blue:visited,
a.count_green:visited,
a.count_orange:visited,
a.count_livid:visited {
font-weight: normal;
color: #c5c5c5;
background-color: #efefef;
}
a.count_blue:visited:after,
a.count_green:visited:after,
a.count_orange:visited:after,
a.count_livid:visited:after{
content:"";
position: absolute;
top:6px;
left:-6px;
border:4px solid transparent;
border-right-color:#efefef;
}