├── static ├── robots.txt └── css │ └── styles.css ├── variables.py ├── templates ├── back.html └── index.html ├── license.md ├── app.py └── quotes.txt /static/robots.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /variables.py: -------------------------------------------------------------------------------- 1 | apikey = "YOUR API KEY HERE" -------------------------------------------------------------------------------- /static/css/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin-top:100px; 3 | } 4 | 5 | #quote { 6 | margin-top:.25em; 7 | font-family:Garamond, serif; 8 | font-size:2em; 9 | } 10 | 11 | #instructions { 12 | margin-top:4em; 13 | } 14 | 15 | .small { 16 | font-size:.8em; 17 | } 18 | 19 | .hidden { 20 | visibility: hidden; 21 | } 22 | 23 | .modal-content { 24 | margin-top:100px; 25 | } 26 | 27 | #username { 28 | border-bottom: 1px dashed; navy; 29 | font-weight:800; 30 | } -------------------------------------------------------------------------------- /templates/back.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 |Your lack of interest makes me sad. Sniff.
You can go back and get three more insults if you want. I'm needy, not greedy.
All in good fun. Use with care, .
132 | Gimme An Insult 133 | 134 | 135 | 136 |