root/branches/athena/build/theme_templates/modules/default/screen.css.tt @ 1092

Revision 1092, 2.1 kB (checked in by hachi, 2 years ago)

Merging release-15 to athena branch. svn merge -r59987:60375 http://svn.sixapart.com/repos/eng/movabletype/branches/release-15 .

  • Property svn:executable set to *
Line 
1/* Global */
2
3body {
4    font: normal 13px arial, helvetica, hirakakupro-w3, osaka, "ms pgothic", sans-serif;
5}
6
7
8/* Header */
9
10#header {
11    border-top-width: 10px;
12    border-top-style: solid;
13}
14
15#header-inner {
16    position: relative;
17}
18
19#header-name {
20    margin: 0 0 5px;
21    line-height: 1;
22}
23
24#header-description {
25    margin: 0;
26    font-size: 14px;
27    line-height: 1.125;
28}
29
30#header a {
31    text-decoration: none;
32}
33
34#header a:hover {
35    text-decoration: underline;
36}
37
38
39/* Content */
40
41.asset-name {
42    font-size: 22px;
43    font-weight: bold;
44}
45
46.asset-name a {
47    text-decoration: none;
48}
49
50.asset-name a:hover {
51    text-decoration: underline;
52}
53
54.asset-content {
55    margin: 5px 0;
56}
57
58.asset-more-link {
59    font-weight: bold;
60}
61
62.asset-meta {
63    margin-top: .25em;
64    padding-top: 2px;
65    font-weight: normal;
66
67    display: block;
68    border-top: [% theme.content.post_name.border.width || '1px' %] [% theme.content.post_name.border.style || 'dashed' %] [% theme.content.post_name.border.color || theme.default.border.color %];
69    padding-bottom: .3em;
70}
71
72.asset-footer a,
73.comment-footer a {
74    font-weight: normal;
75}
76
77.content-nav {
78    margin: 5px 0 10px;
79}
80
81.archive-title {
82    margin: 5px 0 30px;
83    font-size: 26px;
84    font-weight: bold;
85}
86
87.trackbacks-info,
88.trackback-content,
89.comment-content,
90.comments-open-content,
91.comments-closed {
92    margin: 5px 0;
93}
94
95.widget-header,
96.trackbacks-header,
97.comments-header,
98.comments-open-header,
99.archive-header,
100.search-form-header,
101.search-results-header {
102    margin: 0;
103    padding: 5px 0;
104    font-size: 18px;
105    font-weight: bold;
106}
107
108.search-results-header {
109    margin-bottom: .25em;
110}
111
112.asset-more-link,
113.asset-meta,
114.comment-footer,
115.trackback-footer,
116.typelist-thumbnailed {
117    font-size: 11px;
118}
119
120/* Footer */
121
122#footer-content,
123#footer-content a {
124    color: #fff;
125}
126
127
128/* Utility */
129
130.widget-header,
131.trackbacks-header,
132.comments-header,
133.comments-open-header,
134.archive-header,
135.search-form-header,
136.search-results-header {
137    /* ie win (5, 5.5, 6) bugfix */
138    p\osition: relative;
139    width: 100%;
140    w\idth: auto;
141}
142
Note: See TracBrowser for help on using the browser.