Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions classSelector/css/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
body{
text-indent: 20px;
background-color: black;
}
body p span{
display:block;
color: white;

}

.odd span{
color:black;
background-color: white;
}
13 changes: 13 additions & 0 deletions complexSelectors/css/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
div div p.tagged{
color:red;
}
div div p span.tagged{
color:green;
}
div ul li.tagged{
border: 1px solid red;
}
div .ul-1 li.tagged{
color:green;
border: 5px solid green;
}
21 changes: 21 additions & 0 deletions idSelector/css/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
body{
padding-left: 20px;
background-color: black;
font-family: Helvetica;
}
body span{
display: block;
color: white;
font-style: italic;
font-weight: 600;
}
#bridge span{
color:yellow;
font-size: 16px;
font-weight: 900;
}
.odd span{
color:black;
background-color: white;
font-weight: normal;
}
4 changes: 4 additions & 0 deletions tagSelector/css/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
body p span{
display: block;
text-indent: 20px;
}