Last active
February 12, 2020 21:19
-
-
Save vainveins/312c4e495c5b95c7b3acd915ab120c29 to your computer and use it in GitHub Desktop.
mw_styles.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
New Perspectives on HTML and CSS | |
Tutorial 3 | |
Case Problem 2 | |
Mountain Wheels Text and Color Style | |
Author: Davis Giang | |
Date: 10/16/2016 | |
Filename: mw_layout.css | |
Supporting Files: none | |
*/ | |
body { | |
font-family: Tahoma, Geneva, sans-serif; | |
} | |
#articleheader { | |
font-size: 18px; | |
font-weight: normal; | |
letter-spacing: 7px; | |
text-align:center; | |
} | |
nav ul{ | |
background-color:rgb(125, 120, 89); | |
line-height: 3em; | |
list-style-type:none; | |
width:200px; | |
} | |
nav a{ | |
*color:white; | |
color:white; | |
opacity:0.5; | |
text-decoration:none; | |
} | |
nav ul li:hover{ | |
background-color:rgb(131, 121, 36); | |
list-style-image:url(wheelmarker.png) | |
} | |
nav ul a:hover{ | |
*color:yellow; | |
color:white; | |
opacity: 1.0; | |
} | |
#leftsection > p { | |
font-size:22px; | |
} | |
#leftsection > p:first-of-type::first-line { | |
text-transform: uppercase; | |
} | |
blockquote { | |
background-color:rgb(131, 121,36); | |
color:white; | |
font-size: 16px; | |
font-family: Comic, Times, cursive; | |
} | |
#rightsection h1 { | |
font-size:22px; | |
letter-spacing:3px; | |
font-weight:normal; | |
text-align:center; | |
} | |
#rightsection h2 { | |
font-size:18px; | |
text-align:right; | |
font-weight:normal; | |
} | |
#rightsection p { | |
color:gray; | |
font-size:14px; | |
text-align:justify; | |
} | |
footer address { | |
font-size:16px; | |
font-style:normal; | |
text-align:center; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment