-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
165 lines (143 loc) · 2.3 KB
/
style.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
* {
padding: 0px;
margin: 0px;
color: #FFF;
}
@font-face {
font-family: "custom-san";
src: url('font.ttf');
}
body {
font-family: "custom-san";
background-color: #000;
color: #FFF;
padding-top: 8px;
padding-bottom: 32px;
}
logo {
display: inline-block;
font-size: 48px;
line-height: 40px;
user-select: none;
}
logo left {
display: inline-block;
font-weight: bold;
margin-right: -8px;
}
logo right {
display: inline-block;
font-weight: bold;
background: #FF9900;
color: #000;
border-radius: 8px;
padding: 8px;
}
.fixedWidthContainer {
width: 1000px;
margin: 0 auto;
}
.barTop {
width: calc(100% - 32px);
background-color: #1F1F1F;
padding: 8px 16px;
border-top: 1px solid #555555;
border-bottom: 1px solid #242424;
}
.barBottom {
width: calc(100% - 32px);
padding: 0px 16px;
background-color: #0F0F0F;
}
.menuObj {
display: inline-block;
font-weight: bold;
padding: 8px 32px;
}
.menuObj:hover {
background-color: #202020;
}
a {
text-decoration: none;
}
.search {
padding: 8px;
border-radius: 8px;
color: #EEE;
width: 512px;
background-color: #0A0A0A;
border: 0px;
position: relative;
left: 32px;
}
.search:focus {
outline: 0;
}
.main {
display: block;
margin-top: 32px;
width: 100%;
background-color: #0A0A0A;
border: 1px solid #303030;
}
.main .header {
display: block;
width: 984px;
background-color: #202020;
padding: 8px;
border-bottom: 1px solid #000000;
}
.main #content {
display: block;
width: 952px;
background-color: #0A0A0A;
padding: 24px;
text-align: center;
}
obj {
width: 256px;
height: 192px;
display: inline-block;
margin-right: 24px;
}
obj imgBox {
display: block;
width: 256px;
height: 135px;
text-align: center;
background-color: #000;
background-position: center;
background-size: auto 144px;
background-repeat: no-repeat;
}
obj img {
width: 240px;
display: inline-block;
}
obj name {
display: block;
color: #F90;
font-size: 12px;
padding: 0px 16px;
position: relative;
top: 8px;
}
obj view {
display: block;
color: #AAA;
font-size: 12px;
padding: 8px 16px;
}
obj like{
display: block;
font-size: 12px;
width: 95%;
text-align: right;
position: relative;
top: -23px;
color: #FFF;
background-image: url("thumbs.png");
background-size: auto 10px;
background-repeat: no-repeat;
background-position: right 30px center;
}