Skip to content

Instantly share code, notes, and snippets.

@srishilesh
Created November 20, 2020 18:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save srishilesh/2e9d4030619d014585e06c745706ee35 to your computer and use it in GitHub Desktop.
Save srishilesh/2e9d4030619d014585e06c745706ee35 to your computer and use it in GitHub Desktop.
/* USE OF GOOGLE FONTS - GOOGLE STYLESHEET IMPORTED IN HTML FILE*/
#table-title{
color: rgb(88, 40, 49);
font-family: "Times New Roman";
align-items: center;
}
/* EXAMPLE OF ELEMENT SELECTOR */
/* BORDER PROPERTY APPLIED FOR TABLE */
table {
width: 100%;
border: 2px solid #ddd;
align-items: center;
}
.table-props {
border-radius: 15px;
padding: 5px;
position: relative;
margin: 4px, 4px;
width: 300px;
}
div.scrolling {
overflow-x: scroll;
}
/* EXAMPLE OF ELEMENT SELECTOR */
th, td {
text-align: center;
padding: 8px;
}
/* EXAMPLE OF PSEUDO CLASS */
/* tr:nth-child(even){background-color: #f2f2f2}
tr:nth-child(odd){background-color: #f2f2f242} */
#table-heading {
font-weight: bold;
background-color: rgb(51, 20, 51);
color: rgb(224, 178, 92);
}
/* HIGHLIGHTED THE HIGHEST VALUE IN TABLE */
#highest-value {
background-color: rgb(206, 75, 58);
}
/* HIGHLIGHTED THE LOWEST VALUE IN TABLE */
#lowest-value {
background-color: rgb(224, 178, 92);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment