Team:SDU-Denmark/core/BasicStyles

From 2013.igem.org

(Difference between revisions)
(Created page with "/* Name: Headers */ h1, h2, h3, h4 { font-family: Arial; color: #3D3D3D; font-weight:bold; margin-bottom:0px; margin-top:30px; } - Name: Normal text: p { ...")
 
(26 intermediate revisions not shown)
Line 1: Line 1:
-
/* Name: Headers */
 
h1, h2, h3, h4 {
h1, h2, h3, h4 {
     font-family: Arial;
     font-family: Arial;
-
     color: #3D3D3D;
+
     color: #004684;
     font-weight:bold;
     font-weight:bold;
-
     margin-bottom:0px;
+
     margin-bottom:0 !important;
-
     margin-top:30px;
+
     margin-top:0px;
 +
    border:none;
}
}
 +
/* Name: Header 1 */
 +
h1 {
 +
    font-size: 22px;
 +
   
 +
}
 +
/* Name: Header 2 */
 +
h2 {
 +
    font-size: 24px;
 +
    padding-bottom:10px;
 +
}
 +
/* Name: Header 3 */
 +
h3 {
 +
    font-size: 20px;
 +
}
 +
/* Name: Header 4 */
 +
h4 {
 +
    font-size: 16px;
 +
    font-style: italic;
 +
    padding-bottom:20px;
 +
}
 +
 +
 +
/* Name: Appetizer text */
 +
/* Description: Used to give a short and exciting description of the subsequent content. */
 +
p.intro {
 +
    font-style: italic;
 +
    font-size: 16px;
 +
    color: #808080;
 +
    margin-bottom:40px;
 +
}
 +
 +
/* Name: DNA Sequence Code */
 +
/* Description: Used for highlighting DNA sequences and similar codes. */
 +
span.SequenceCode {
 +
    font-size: 14px;
 +
    font-family: Courier New;
 +
    color: red;
 +
    border-style: dashed;
 +
    border-width: 1px;
 +
    border-color: Gray;
 +
    padding: 0px 5px;
 +
}
 +
/* Name: Normal text */
/* Name: Normal text */
p {
p {
Line 14: Line 57:
     color: #3D3D3D;
     color: #3D3D3D;
}
}
-
/* Name: Appetizer text */
+
 
-
p.intro {
+
/* Name: Paragraph intro */
 +
span.intro {
 +
    font-weight:Bold;
 +
    font-size: 15px;
 +
    font-family:Tahoma;
 +
    color: #3D3D3D;
 +
}
 +
 
 +
/* Name: Important word */
 +
.specialWord {
     font-style: italic;
     font-style: italic;
-
    font-size: 16px;
 
-
    color: #808080;
 
-
    margin-bottom:40px;
 
}
}

Latest revision as of 16:03, 22 September 2013

h1, h2, h3, h4 {

   font-family: Arial;
   color: #004684;
   font-weight:bold;
   margin-bottom:0 !important;
   margin-top:0px;
   border:none;

} /* Name: Header 1 */ h1 {

   font-size: 22px;
   

} /* Name: Header 2 */ h2 {

   font-size: 24px;
   padding-bottom:10px;

} /* Name: Header 3 */ h3 {

   font-size: 20px;

} /* Name: Header 4 */ h4 {

   font-size: 16px;
   font-style: italic;
   padding-bottom:20px;

}


/* Name: Appetizer text */ /* Description: Used to give a short and exciting description of the subsequent content. */ p.intro {

   font-style: italic;
   font-size: 16px;
   color: #808080;
   margin-bottom:40px;

}

/* Name: DNA Sequence Code */ /* Description: Used for highlighting DNA sequences and similar codes. */ span.SequenceCode {

   font-size: 14px;
   font-family: Courier New;
   color: red;
   border-style: dashed;
   border-width: 1px;
   border-color: Gray;
   padding: 0px 5px;

}

/* Name: Normal text */ p {

   font-size: 14px;
   margin-top:10px;
   font-family:Tahoma;
   color: #3D3D3D;

}

/* Name: Paragraph intro */ span.intro {

   font-weight:Bold;
   font-size: 15px;
   font-family:Tahoma;
   color: #3D3D3D;

}

/* Name: Important word */ .specialWord {

   font-style: italic;

}