View this code at http://livecoding.io/4608772
-
-
Save dwtkns/4608772 to your computer and use it in GitHub Desktop.
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
{ | |
"libraries": [ | |
"d3" | |
], | |
"mode": "html", | |
"layout": "fullscreen mode (vertical)", | |
"resolution": "reset" | |
} |
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
/* all <ul> items */ | |
ul { | |
font-size:20px; | |
} | |
#redDiv { | |
position: absolute; | |
width: 118px; | |
height: 107px; | |
/* top:139px;*/ | |
/* left: 192px;*/ | |
background-color: red; | |
} | |
/* | |
ul ul { | |
font-style: italic; | |
} | |
*/ | |
/* classes */ | |
.red_fruits { | |
color: red; | |
} | |
.orange_fruits { | |
color: orange; | |
} | |
.yellow_fruits { | |
color: yellow; | |
} | |
.vegetables li { | |
color: blue; | |
} | |
/* ids */ | |
#tastiest { | |
font-weight: bold; | |
font-size: 150%; | |
} |
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
<html> | |
<head> | |
<title>Lists of Fruits and Vegetables.</title> | |
</head> | |
<body> | |
Here are some fruits: | |
<ul> | |
<li>Apples</li> | |
<li>Citrus Fruits</li> | |
<ul> | |
<li>Oranges</li> | |
<li>Lemons</li> | |
</ul> | |
<li>Not Fruits</li> | |
<ul> | |
<li>Spinach</li> | |
<li>Onion</li> | |
<li>Tomatoes (?)</li> | |
</ul> | |
</ul> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment