Skip to content

Instantly share code, notes, and snippets.

@uicodee
Created October 9, 2024 04:19
Show Gist options
  • Select an option

  • Save uicodee/09961954ae4d060c31347846b21cb28b to your computer and use it in GitHub Desktop.

Select an option

Save uicodee/09961954ae4d060c31347846b21cb28b to your computer and use it in GitHub Desktop.
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
margin: 0;
padding: 0;
}
body {
font-family: "Roboto", sans-serif;
}
p {
font-weight: 900;
font-style: oblique;
line-height: 40px;
}
p:hover {
opacity: 0.3;
font-style: normal;
font-weight: 400;
}
ul > li:first-child {
color: red;
}
ul > li:nth-child(3) {
color: pink;
}
ul > li:last-child {
color: green;
}
.box > a:first-of-type {
color: red !important;
}
.box > a:last-of-type {
color: aquamarine;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment