Skip to content

Instantly share code, notes, and snippets.

Created January 13, 2017 09:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/0caf83bd7b542077c641149677af625c to your computer and use it in GitHub Desktop.
Save anonymous/0caf83bd7b542077c641149677af625c to your computer and use it in GitHub Desktop.
# Secret Santa
## Title Header
```css
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
```css
button {
font-size: 150%;
}
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment