Skip to content
Open
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
28 changes: 28 additions & 0 deletions main.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,31 @@ div {
border-right-color: transparent; /* the right side */
border-bottom-color: transparent; /* and the bottom of the circle */
}
#red {
/* this selects any elements with the red id */
border-top-color: #f00;
}
#orange {
/* this selects any elements with the red id */
border-top-color: rgb(226, 124, 7);
}
#yellow {
/* this selects any elements with the red id */
border-top-color: rgb(209, 174, 16);
}
#green {
/* this selects any elements with the red id */
border-top-color: rgb(21, 63, 8);
}
#blue {
/* this selects any elements with the red id */
border-top-color: rgb(24, 178, 224);
}
#darkblue {
/* this selects any elements with the red id */
border-top-color: indigo;
}
#purple {
/* this selects any elements with the red id */
border-top-color: violet;
}