Team:Mingdao

From 2014hs.igem.org

(Difference between revisions)
(Project)
(Team)
Line 50: Line 50:
|}
|}
-
===Team===
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
Tell us about your team, your school!
+
<html xmlns="http://www.w3.org/1999/xhtml">
 +
<head>
 +
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 +
<!-- TemplateBeginEditable name="doctitle" -->
 +
<title>無標題文件</title>
 +
<!-- TemplateEndEditable -->
 +
<!-- TemplateBeginEditable name="head" -->
 +
<!-- TemplateEndEditable -->
 +
<style type="text/css">
 +
<!--
 +
body  {
 +
font: 100% Verdana, Arial, Helvetica, sans-serif;
 +
background: #666666;
 +
margin: 0; /* 比較好的做法是將 Body 元素的邊界與欄位間隔調整為零,以處理不同的瀏覽器預設值 */
 +
padding: 0;
 +
text-align: center; /* 這樣會讓容器在 IE 5* 瀏覽器內置中對齊。然後,文字會在 #container 選取器中設定為靠左對齊預設值 */
 +
color: #000000;
 +
}
 +
/* 彈性版面的提示
 +
1. 由於彈性版面的整體尺寸調整是以使用者的預設字體大小為基礎,所以比較無法預期。如果正確使用,它們也會比需要較大字體大小的版面更容易存取,這是因為行長度會維持一定比例。
 +
2. 這種版面的 Div 尺寸調整是以 Body 元素中的 100% 字體大小為基礎。如果您在 Body 元素或 #container 上使用 font-size: 80% 藉以減少整體文字大小,請記住,整個版面將會依比例縮小。您可能會想要增加各種 Div 的寬度來補償這種情況。
 +
3. 如果字體尺寸調整是以不同的量在每個 Div 而非整體設計上變更 (亦即:#sidebar1 指定為 70% 字體大小而 #mainContent 指定為 85% 字體大小),這樣就會依比例變更每個 Div 的整體大小。您可能會想要根據最終的字體尺寸來對這些 Div 進行調整。
 +
*/
 +
.twoColElsLt #container {
 +
width: 46em;  /* 如果文字保持瀏覽器的預設字體大小,這個寬度將會建立可容納在 800px 瀏覽器視窗中的容器 */
 +
background: #FFFFFF;
 +
margin: 0 auto; /* 自動邊界 (搭配寬度) 會讓頁面置中對齊 */
 +
border: 1px solid #000000;
 +
text-align: left; /* 這樣做會覆寫 Body 元素上的 text-align: center。 */
 +
}
 +
 +
/* sidebar1 的提示:
 +
1. 請注意,如果您在這個 Div 上設定 font-size 值,Div 的整體寬度將加以調整。
 +
2. 因為我們是以 em 為單位進行工作,所以最好不要在邊列本身上使用欄位間隔。它將會新增至寬度,而讓符合標準的瀏覽器建立不明的實際寬度。
 +
3. 您可以根據在 ".twoColElsLt #sidebar1 p" 規則中看見的方式,將左和右邊界放置於 Div 內部的元素上,藉以建立 Div 側邊與內部元素之間的空間。
 +
*/
 +
.twoColElsLt #sidebar1 {
 +
float: left;
 +
width: 12em; /* 因為這個元素是浮動元素,所以您必須指定寬度 */
 +
background: #EBEBEB; /* 背景顏色將會針對欄的內容長度而顯示,但僅止於此 */
 +
padding: 15px 0; /* 頂端和底部欄位間隔會在這個 Div 內部建立視覺空間 */
 +
}
 +
.twoColElsLt #sidebar1 h3, .twoColElsLt #sidebar1 p {
 +
margin-left: 10px; /* 您應該針對將要放置於側邊欄的每個元素,指定左和右邊界 */
 +
margin-right: 10px;
 +
}
 +
 +
/* mainContent 的提示:
 +
1. 如果您針對這個 #mainContent Div 和 #sidebar1 Div 指定不同的 font-size 值,則 #mainContent Div 的邊界將會以其 font-size 為基礎,而 #sidebar1 Div 的寬度將會以其 font-size 為基礎。您可能會想要調整這些 Div 的值。
 +
2. mainContent 和 sidebar1 之間的空間是以 mainContent Div 的左邊界建立的。不論 sidebar1 Div 包含多少內容,欄空間將維持不變。當 #sidebar1 的內容結束時,如果您想讓 #mainContent Div 的文字填滿 #sidebar1 的空間,就可以移除這個左邊界。
 +
3. 若要避免浮動遺失,您可能需要進行測試以便判斷約略的影像/元素大小上限,因為這個版面是以使用者的字體尺寸結合您所設定的值為基礎。不過,如果使用者將他們的瀏覽器字體大小設定為低於一般大小,#mainContent Div 中的可用空間將會比您在測試時看見的空間更少。
 +
4. 在下列 Internet Explorer 條件註解中,縮放屬性是用來提供 mainContent "hasLayout"。這樣做可避免許多可能會發生的 IE 特有錯誤。
 +
*/
 +
.twoColElsLt #mainContent {
 +
margin: 0 1.5em 0 13em; /* 右邊界的指定方式可以使用 em 或像素為單位。它會在頁面的右下方建立空間。 */
 +
}
 +
 +
/* 可重複使用的雜項類別 */
 +
.fltrt { /* 這個類別可用來讓頁面右邊的元素浮動。浮動元素必須位於頁面上必須相鄰的元素前面。 */
 +
float: right;
 +
margin-left: 8px;
 +
}
 +
.fltlft { /* 這個類別可用來讓頁面左邊的元素浮動 */
 +
float: left;
 +
margin-right: 8px;
 +
}
 +
.clearfloat { /* 這個類別應該放置於 Div 或 Break 元素上,而且應該是完整包含浮動的容器關閉前的最後一個元素 */
 +
clear:both;
 +
    height:0;
 +
    font-size: 1px;
 +
    line-height: 0px;
 +
}
 +
-->
 +
</style><!--[if IE]>
 +
<style type="text/css">
 +
/* 在這個條件註解中,放置所有 IE 版本的 CSS 修正 */
 +
.twoColElsLt #sidebar1 { padding-top: 30px; }
 +
.twoColElsLt #mainContent { zoom: 1; padding-top: 15px; }
 +
/* 上面的專用縮放屬性會提供 IE 所需的 hasLayout,以避免許多錯誤 */
 +
</style>
 +
<![endif]-->
 +
<script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
 +
<link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
 +
</head>
 +
 +
<body class="twoColElsLt">
 +
 +
<div id="container">
 +
  <div id="sidebar1">
 +
<h3>sidebar1 內容</h3>
 +
<p>這個 Div 的背景顏色只會針對內容長度而顯示。如果您想要改用分隔行,而且 #mainContent Div 總是會比 #sidebar1 Div 包含較多內容,請將邊框放置於 #mainContent Div 的左邊。 </p>
 +
    <p>Donec eu mi sed turpis feugiat feugiat. Integer turpis arcu, pellentesque  eget, cursus et, fermentum ut, sapien. </p>
 +
  <!-- end #sidebar1 --></div>
 +
  <div id="mainContent">
 +
<ul id="MenuBar1" class="MenuBarHorizontal">
 +
  <li><a class="MenuBarItemSubmenu" href="#">項目 1</a>
 +
      <ul>
 +
        <li><a href="#">項目 1.1</a></li>
 +
        <li><a href="#">項目 1.2</a></li>
 +
        <li><a href="#">項目 1.3</a></li>
 +
      </ul>
 +
  </li>
 +
  <li></li>
 +
  <li><a class="MenuBarItemSubmenu" href="#">項目 3</a>
 +
      <ul>
 +
        <li><a class="MenuBarItemSubmenu" href="#">項目 3.1</a>
 +
            <ul>
 +
              <li><a href="#">項目 3.1.1</a></li>
 +
              <li><a href="#">項目 3.1.2</a></li>
 +
            </ul>
 +
        </li>
 +
        <li><a href="#">項目 3.2</a></li>
 +
        <li><a href="#">項目 3.3</a></li>
 +
      </ul>
 +
  </li>
 +
  <li><a href="#">項目 4</a></li>
 +
</ul>
 +
<h1>&nbsp; </h1>
 +
<h1>主要內容 </h1>
 +
<p>Test</p>
 +
    <p>&nbsp;</p>
 +
    <p>&nbsp;</p>
 +
    <p>&nbsp;</p>
 +
    <p>&nbsp;</p>
 +
    <h2>H2 層級標題 </h2>
 +
    <p>Test thingy</p>
 +
    <p>&nbsp;</p>
 +
    <h3>H3 Tag</h3>
 +
    <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Praesent aliquam,  justo convallis luctus rutrum, erat nulla fermentum diam, at nonummy quam  ante ac quam. Maecenas urna purus, fermentum id, molestie in, commodo  porttitor, felis. Nam blandit quam ut lacus. Quisque ornare risus quis  ligula. Phasellus tristique purus a augue condimentum adipiscing. Aenean  sagittis. Etiam leo pede, rhoncus venenatis, tristique in, vulputate at, odio.</p>
 +
  <!-- end #mainContent --></div>
 +
<!-- 這個清除元素應該緊接在 #mainContent Div 之後,以便強制 #container Div 包含所有子浮動 --><br class="clearfloat" />
 +
<!-- end #container --></div>
 +
<script type="text/javascript">
 +
<!--
 +
var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
 +
//-->
 +
</script>
 +
</body>
 +
</html>
===Project===
===Project===

Revision as of 06:49, 7 March 2014


This is a template page. READ THESE INSTRUCTIONS.
You are provided with this team page template with which to start the iGEM season. You may choose to personalize it to fit your team but keep the same "look." Or you may choose to take your team wiki to a different level and design your own wiki. You can find some examples HERE.
You MUST have the following information on your wiki:
  • a team description
  • project description
  • safety information (did your team take a safety training course? were you supervised in the lab?)
  • team attribution (who did what part of your project?)
You may also wish to add other page such as:
  • lab notebook
  • sponsor information
  • other information
REMEMBER, keep all of your pages within your teams namespace.
Example: 2013hs.igem.org/Team:Mingdao/Our_Pets



You can write a background of your team here. Give us a background of your team, the members, etc. Or tell us more about something of your choosing.
Mingdao logo.png

Tell us more about your project. Give us background. Use this as the abstract of your project. Be descriptive but concise (1-2 paragraphs)

File:Mingdao team.png
Your team picture
Team Mingdao


Official Team Profile

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 無標題文件

sidebar1 內容

這個 Div 的背景顏色只會針對內容長度而顯示。如果您想要改用分隔行,而且 #mainContent Div 總是會比 #sidebar1 Div 包含較多內容,請將邊框放置於 #mainContent Div 的左邊。

Donec eu mi sed turpis feugiat feugiat. Integer turpis arcu, pellentesque eget, cursus et, fermentum ut, sapien.

 

主要內容

Test

 

 

 

 

H2 層級標題

Test thingy

 

H3 Tag

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Praesent aliquam, justo convallis luctus rutrum, erat nulla fermentum diam, at nonummy quam ante ac quam. Maecenas urna purus, fermentum id, molestie in, commodo porttitor, felis. Nam blandit quam ut lacus. Quisque ornare risus quis ligula. Phasellus tristique purus a augue condimentum adipiscing. Aenean sagittis. Etiam leo pede, rhoncus venenatis, tristique in, vulputate at, odio.


Contents

Project

Food wastes are discarded and unable to be used. Recycling and reuse of the wastes are getting increasingly attention. Generating fertilizer from kitchen wastes are benefit for the environment and even profitable. However, fertilizers made from the wastes are always with bad smell even deodorants have been used.
In our project, we will analyze where the bad smells are produced. We are going to genetically engineer bacteria to diminish or reduce the smell.

Notebook

Show us how you spent your days.


Results/Conclusions

What did you achieve over the course of your semester?


Safety

What safety precautions did your team take? Did you take a safety training course? Were you supervised at all times in the lab?


Attributions

Who worked on what?


Human Practices

What impact does/will your project have on the public?


Fun!

What was your favorite team snack?? Have a picture of your team mascot?


<forum_subtle />









ABC 明道iGEM