Skip to content

Instantly share code, notes, and snippets.

@io41
Forked from anonymous/root-secretsanta.eve
Created January 13, 2017 09:40
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 io41/7901e9b320560c49516135379a3ef9a7 to your computer and use it in GitHub Desktop.
Save io41/7901e9b320560c49516135379a3ef9a7 to your computer and use it in GitHub Desktop.

Secret Santa

Title Header

h1.title {
  color: red;
  text-shadow: 2px 2px #A00;
}
bind @browser
  [tag: "h1", text: "Secret Santa", class: "title"]

Participants Section

In secret santa, each participant's name is added here.

search
  [#user]
  
bind @browser
  [tag: "div", text: "I'm a user"]

and for when there's no users...

search
  not([#user])
  
bind @browser
  [tag: "button", text: "Add user", class:"ion-person-add"]


Global Style

button {
  font-size: 150%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment