Skip to content

Instantly share code, notes, and snippets.

@cjdenio
Last active April 1, 2022 14:07
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 cjdenio/77c197c6a1d8c3769936101ede69c6fe to your computer and use it in GitHub Desktop.
Save cjdenio/77c197c6a1d8c3769936101ede69c6fe to your computer and use it in GitHub Desktop.
* {
font-family: Papyrus, serif !important;
}
h1.primary::before {
content: "Not ";
}
.app__content > h1:first-of-type {
text-transform: lowercase;
}
.app__content > h1:first-of-type::before {
content: "Some";
margin-right: 10px;
text-transform: initial;
}
.app__content > h1:first-of-type::after {
content: ".";
}
.dock__item:nth-child(1) span::before {
content: "Send ";
}
.dock__item:nth-child(1) span::after {
content: ".";
}
.dock__item:nth-child(2) span::before {
content: "Manage ";
}
.dock__item:nth-child(2) span::after {
content: ".";
}
.dock__item:nth-child(3) span::after {
content: " money.";
}
.dock__item:nth-child(4) span::before {
content: "Here be ";
text-transform: initial;
}
.dock__item:nth-child(4) span {
text-transform: lowercase;
}
.dock__item:nth-child(4) span::after {
content: ".";
}
.dock__item:nth-child(5) span::after {
content: ", you say?";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment