diff options
Diffstat (limited to 'static')
| -rw-r--r-- | static/android-chrome-192x192.png | bin | 0 -> 26249 bytes | |||
| -rw-r--r-- | static/android-chrome-512x512.png | bin | 0 -> 80376 bytes | |||
| -rw-r--r-- | static/apple-touch-icon.png | bin | 0 -> 24023 bytes | |||
| -rw-r--r-- | static/favicon-16x16.png | bin | 0 -> 878 bytes | |||
| -rw-r--r-- | static/favicon-32x32.png | bin | 0 -> 2463 bytes | |||
| -rw-r--r-- | static/favicon.ico | bin | 0 -> 15406 bytes | |||
| -rw-r--r-- | static/gradecoin.png | bin | 0 -> 197656 bytes | |||
| -rw-r--r-- | static/gradecoin.pub | 9 | ||||
| -rw-r--r-- | static/site.css | 57 |
9 files changed, 66 insertions, 0 deletions
diff --git a/static/android-chrome-192x192.png b/static/android-chrome-192x192.png new file mode 100644 index 0000000..023ddbd --- /dev/null +++ b/static/android-chrome-192x192.png | |||
| Binary files differ | |||
diff --git a/static/android-chrome-512x512.png b/static/android-chrome-512x512.png new file mode 100644 index 0000000..4251933 --- /dev/null +++ b/static/android-chrome-512x512.png | |||
| Binary files differ | |||
diff --git a/static/apple-touch-icon.png b/static/apple-touch-icon.png new file mode 100644 index 0000000..cd8e4c8 --- /dev/null +++ b/static/apple-touch-icon.png | |||
| Binary files differ | |||
diff --git a/static/favicon-16x16.png b/static/favicon-16x16.png new file mode 100644 index 0000000..bd63d34 --- /dev/null +++ b/static/favicon-16x16.png | |||
| Binary files differ | |||
diff --git a/static/favicon-32x32.png b/static/favicon-32x32.png new file mode 100644 index 0000000..e343587 --- /dev/null +++ b/static/favicon-32x32.png | |||
| Binary files differ | |||
diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100644 index 0000000..45d8bfe --- /dev/null +++ b/static/favicon.ico | |||
| Binary files differ | |||
diff --git a/static/gradecoin.png b/static/gradecoin.png new file mode 100644 index 0000000..eeb670c --- /dev/null +++ b/static/gradecoin.png | |||
| Binary files differ | |||
diff --git a/static/gradecoin.pub b/static/gradecoin.pub new file mode 100644 index 0000000..ffe2f12 --- /dev/null +++ b/static/gradecoin.pub | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | -----BEGIN PUBLIC KEY----- | ||
| 2 | MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyGuqiCPGcguy+Y9TH7Bl | ||
| 3 | 7XlEsalyqb9bYlzpbV0dnqZ3lPkEPkuOhkN+GcuiV6iXtSwyh7nB+xTRXKJFRUBO | ||
| 4 | /jbN8jfcxVwBu0JxjF3v1YRBxbOHhz2A295mbKD9xHQCKxkfYBNkUXxj8gd+GaDv | ||
| 5 | QiSW5NdrX/lEkvqfGtdEX1m2+HdcG0+3YW24Xg0znhCwLr+sorLuJaDy9Xa0Uo+D | ||
| 6 | PWGC5s001U/BxkCIWJ+eJQCb7Bv+9vXb8BGRK/ecMb/fb6h5O+8fgB64RCHMgcc2 | ||
| 7 | v+Q/dPt8kHX1OJdMuYUrUJGACppMQY3W6e1HdlRIBcZKL2LMZ2CrIB/2D5LiJhPT | ||
| 8 | hQIDAQAB | ||
| 9 | -----END PUBLIC KEY----- | ||
diff --git a/static/site.css b/static/site.css new file mode 100644 index 0000000..6c79aa9 --- /dev/null +++ b/static/site.css | |||
| @@ -0,0 +1,57 @@ | |||
| 1 | .content blockquote { | ||
| 2 | border-left: #689d6a 8px solid; | ||
| 3 | |||
| 4 | } | ||
| 5 | .content blockquote.tidbit { | ||
| 6 | border-left: #928f74 8px solid; | ||
| 7 | font-size: 12px; | ||
| 8 | color: #282828; | ||
| 9 | } | ||
| 10 | |||
| 11 | li p { | ||
| 12 | margin: 2px; | ||
| 13 | } | ||
| 14 | |||
| 15 | /* OUTER CONTAINER */ | ||
| 16 | .tcontainer { | ||
| 17 | width: 100%; | ||
| 18 | overflow: hidden; /* Hide scroll bar */ | ||
| 19 | } | ||
| 20 | |||
| 21 | /* MIDDLE CONTAINER */ | ||
| 22 | .ticker-wrap { | ||
| 23 | width: 100%; | ||
| 24 | padding-left: 100%; /* Push contents to right side of screen */ | ||
| 25 | background-color: #eee; | ||
| 26 | } | ||
| 27 | |||
| 28 | /* INNER CONTAINER */ | ||
| 29 | @keyframes ticker { | ||
| 30 | 0% { transform: translate3d(0, 0, 0); } | ||
| 31 | 100% { transform: translate3d(-100%, 0, 0); } | ||
| 32 | } | ||
| 33 | |||
| 34 | .ticker-move { | ||
| 35 | /* Basically move items from right side of screen to left in infinite loop */ | ||
| 36 | display: inline-block; | ||
| 37 | white-space: nowrap; | ||
| 38 | padding-right: 100%; | ||
| 39 | animation-iteration-count: infinite; | ||
| 40 | animation-timing-function: linear; | ||
| 41 | animation-name: ticker; | ||
| 42 | animation-duration: 30s; | ||
| 43 | } | ||
| 44 | |||
| 45 | .ticker-move:hover{ | ||
| 46 | animation-play-state: paused; /* Pause scroll on mouse hover */ | ||
| 47 | } | ||
| 48 | |||
| 49 | /* ITEMS */ | ||
| 50 | .ticker-item { | ||
| 51 | display: inline-block; /* Lay items in a horizontal line */ | ||
| 52 | padding: 0 5px; | ||
| 53 | } | ||
| 54 | |||
| 55 | .ticker-item::before { | ||
| 56 | content: " ✑ "; | ||
| 57 | } | ||
