diff options
author | Xin LI <delphij@FreeBSD.org> | 2013-11-14 00:20:51 +0000 |
---|---|---|
committer | Xin LI <delphij@FreeBSD.org> | 2013-11-14 00:20:51 +0000 |
commit | 797a990cf709e43fdcfa0f1b0b8b8e0127076002 (patch) | |
tree | 38ebab2823385023d1fa54018fceb14262c4cf93 /zh_CN.UTF-8/htdocs/layout | |
parent | 8ff93b9827e6bfbbae625ff0d45eb2ce00ebe029 (diff) |
Notes
Diffstat (limited to 'zh_CN.UTF-8/htdocs/layout')
-rw-r--r-- | zh_CN.UTF-8/htdocs/layout/Makefile | 15 | ||||
-rw-r--r-- | zh_CN.UTF-8/htdocs/layout/Makefile.inc | 7 | ||||
-rw-r--r-- | zh_CN.UTF-8/htdocs/layout/css/Makefile | 16 | ||||
-rw-r--r-- | zh_CN.UTF-8/htdocs/layout/css/fixed.css | 23 | ||||
-rw-r--r-- | zh_CN.UTF-8/htdocs/layout/css/fixed_large.css | 14 | ||||
-rw-r--r-- | zh_CN.UTF-8/htdocs/layout/css/global.css | 18 | ||||
-rw-r--r-- | zh_CN.UTF-8/htdocs/layout/css/layout.css | 62 | ||||
-rw-r--r-- | zh_CN.UTF-8/htdocs/layout/css/navigation.css | 39 | ||||
-rw-r--r-- | zh_CN.UTF-8/htdocs/layout/css/text.css | 28 |
9 files changed, 222 insertions, 0 deletions
diff --git a/zh_CN.UTF-8/htdocs/layout/Makefile b/zh_CN.UTF-8/htdocs/layout/Makefile new file mode 100644 index 0000000000..ddb3903e1e --- /dev/null +++ b/zh_CN.UTF-8/htdocs/layout/Makefile @@ -0,0 +1,15 @@ +# The FreeBSD Simplified Chinese Project +# Original Revision: 1.1 +# +# $FreeBSD$ + +.if exists(../Makefile.conf) +.include "../Makefile.conf" +.endif +.if exists(../Makefile.inc) +.include "../Makefile.inc" +.endif + +SUBDIR= css + +.include "${DOC_PREFIX}/share/mk/web.site.mk" diff --git a/zh_CN.UTF-8/htdocs/layout/Makefile.inc b/zh_CN.UTF-8/htdocs/layout/Makefile.inc new file mode 100644 index 0000000000..a7977b07f6 --- /dev/null +++ b/zh_CN.UTF-8/htdocs/layout/Makefile.inc @@ -0,0 +1,7 @@ +# The FreeBSD Simplified Chinese Project +# Original Revision: 1.1 +# +# $FreeBSD$ + +WEBBASE?= /data/zh_CN/layout +DOC_PREFIX?= ${.CURDIR}/../../../.. diff --git a/zh_CN.UTF-8/htdocs/layout/css/Makefile b/zh_CN.UTF-8/htdocs/layout/css/Makefile new file mode 100644 index 0000000000..39bc32e2e2 --- /dev/null +++ b/zh_CN.UTF-8/htdocs/layout/css/Makefile @@ -0,0 +1,16 @@ +# +# The FreeBSD Simplified Chinese Project +# Original Revision: 1.2 +# +# $FreeBSD$ + +.if exists(../Makefile.conf) +.include "../Makefile.conf" +.endif +.if exists(../Makefile.inc) +.include "../Makefile.inc" +.endif + +DATA= fixed.css fixed_large.css global.css layout.css navigation.css text.css + +.include "${DOC_PREFIX}/share/mk/web.site.mk" diff --git a/zh_CN.UTF-8/htdocs/layout/css/fixed.css b/zh_CN.UTF-8/htdocs/layout/css/fixed.css new file mode 100644 index 0000000000..272e4f8ded --- /dev/null +++ b/zh_CN.UTF-8/htdocs/layout/css/fixed.css @@ -0,0 +1,23 @@ +/* + FreeBSD.org - "Red" Style + + Inspired by AListApart, PositionIsEverything, Mozilla, Red Hat, and many more. + + Copyright (c) 2004, 2005 The FreeBSD Project + Copyright (c) 2004, 2005 Emily Boyd <emily at emilyboyd.com> + + This file, and any imported stylesheets are licensed under the BSD license. + + The FreeBSD Simplified Chinese Project + Original Revision: 1.5 + + $FreeBSD$ +*/ + +@import url("global.css"); +@import url("layout.css"); +@import url("text.css"); +@import url("navigation.css"); +@import url("../../../layout/css/table.css"); + +@import url("../../../layout/css/iefixes.css"); diff --git a/zh_CN.UTF-8/htdocs/layout/css/fixed_large.css b/zh_CN.UTF-8/htdocs/layout/css/fixed_large.css new file mode 100644 index 0000000000..37552af75c --- /dev/null +++ b/zh_CN.UTF-8/htdocs/layout/css/fixed_large.css @@ -0,0 +1,14 @@ +/* + * FreeBSD Global Style - Large Text Version + * + * The FreeBSD Simplified Chinese Project + * Original Revision: 1.3 + * + * $FreeBSD$ + */ + +@import url("fixed.css"); + +body { + font-size: 93%; +} diff --git a/zh_CN.UTF-8/htdocs/layout/css/global.css b/zh_CN.UTF-8/htdocs/layout/css/global.css new file mode 100644 index 0000000000..a4ea4b4380 --- /dev/null +++ b/zh_CN.UTF-8/htdocs/layout/css/global.css @@ -0,0 +1,18 @@ +/* + * FreeBSD.org - Global Styles + * + * The FreeBSD Simplified Chinese Project + * Original Revision: 1.11 + * + * $FreeBSD$ + */ + +@import url("../../../layout/css/global.css"); + +h5 { + font-size: 1.09em; +} + +h6 { + font-size: 1.09em; +} diff --git a/zh_CN.UTF-8/htdocs/layout/css/layout.css b/zh_CN.UTF-8/htdocs/layout/css/layout.css new file mode 100644 index 0000000000..201f415356 --- /dev/null +++ b/zh_CN.UTF-8/htdocs/layout/css/layout.css @@ -0,0 +1,62 @@ +/* + * FreeBSD.org - Layout Styles + * + * The FreeBSD Simplified Chinese Project + * Original Revision: 1.10 + * + * $FreeBSD$ + */ + +@import url("../../../layout/css/layout.css"); + +/* Container Definitions */ + +/* Search */ + +#search form input { + font-size: 1.09em; +} + +#search form #submit { + font-size: 1.09em; +} + +#search form #words { + font-size: 1.0em; +} + +/* Mirror Select */ + +#mirror form label { + font-size: 1.09em; +} + +#mirror form select { + font-size: 1.09em; +} + +#mirror form #mirrorsel { + font-size: 1.09em; +} + +#mirror input { + font-size: 1.09em; +} + +/* Content */ + +.frontnewcontent { + font-size: 1.1em; +} + +/* Get FreeBSD Box */ + +.frontgetcontent { + font-size: 1.4em; +} + +/* Footer */ + +#footer { + font-size: 1.09em; +} diff --git a/zh_CN.UTF-8/htdocs/layout/css/navigation.css b/zh_CN.UTF-8/htdocs/layout/css/navigation.css new file mode 100644 index 0000000000..859e5d5155 --- /dev/null +++ b/zh_CN.UTF-8/htdocs/layout/css/navigation.css @@ -0,0 +1,39 @@ +/* + * FreeBSD.org - Navigation (and List) Styles + * + * The FreeBSD Simplified Chinese Project + * Original Revision: 1.4 + * $FreeBSD$ + */ + +@import url("../../../layout/css/navigation.css"); + +/* Site Navigation */ + +#topnav { + font-size: 1.09em; +} + +/* Language selection */ + +#languagenav { + font-size: 1.09em; +} + +/* The search navigation is the list of links above the search box. */ + +#searchnav { + font-size: 1.09em; +} + +/* Category Navigation */ + +#sidenav, #sidenav ul, #sidenav ul ul { + font-size: 1.0em; +} + +/* Right Navigation */ + +.rightnav, .rightnav ul, .rightnav ul ul { + font-size: 1.0em; +} diff --git a/zh_CN.UTF-8/htdocs/layout/css/text.css b/zh_CN.UTF-8/htdocs/layout/css/text.css new file mode 100644 index 0000000000..dfeac5b5de --- /dev/null +++ b/zh_CN.UTF-8/htdocs/layout/css/text.css @@ -0,0 +1,28 @@ +/* + * FreeBSD.org - Text Styles + * + * The FreeBSD Simplified Chinese Project + * Original Revision: 1.4 + * + * $FreeBSD$ + */ + +@import url("../../../layout/css/text.css"); + +/* Text Styles */ + +.txtdivider { + font-size: 1.09em; +} + +.txtnewsevent { + font-size: 1.09em; +} + +.txtshortcuts { + font-size: 1.09em; +} + +.txtdate { + font-size: 1.09em; +} |