Created
January 13, 2017 09:40
-
-
Save anonymous/0caf83bd7b542077c641149677af625c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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