From 59ea3bd25b1f113168333eccdc9ffc4acd98cfe6 Mon Sep 17 00:00:00 2001 From: Yigit Sever Date: Mon, 19 Apr 2021 18:23:22 +0300 Subject: Initial commit --- static/android-chrome-192x192.png | Bin 0 -> 26249 bytes static/android-chrome-512x512.png | Bin 0 -> 80376 bytes static/apple-touch-icon.png | Bin 0 -> 24023 bytes static/favicon-16x16.png | Bin 0 -> 878 bytes static/favicon-32x32.png | Bin 0 -> 2463 bytes static/favicon.ico | Bin 0 -> 15406 bytes static/gradecoin.png | Bin 0 -> 197656 bytes static/gradecoin.pub | 9 ++++++ static/site.css | 57 ++++++++++++++++++++++++++++++++++++++ 9 files changed, 66 insertions(+) create mode 100644 static/android-chrome-192x192.png create mode 100644 static/android-chrome-512x512.png create mode 100644 static/apple-touch-icon.png create mode 100644 static/favicon-16x16.png create mode 100644 static/favicon-32x32.png create mode 100644 static/favicon.ico create mode 100644 static/gradecoin.png create mode 100644 static/gradecoin.pub create mode 100644 static/site.css (limited to 'static') diff --git a/static/android-chrome-192x192.png b/static/android-chrome-192x192.png new file mode 100644 index 0000000..023ddbd Binary files /dev/null and b/static/android-chrome-192x192.png differ diff --git a/static/android-chrome-512x512.png b/static/android-chrome-512x512.png new file mode 100644 index 0000000..4251933 Binary files /dev/null and b/static/android-chrome-512x512.png differ diff --git a/static/apple-touch-icon.png b/static/apple-touch-icon.png new file mode 100644 index 0000000..cd8e4c8 Binary files /dev/null and b/static/apple-touch-icon.png differ diff --git a/static/favicon-16x16.png b/static/favicon-16x16.png new file mode 100644 index 0000000..bd63d34 Binary files /dev/null and b/static/favicon-16x16.png differ diff --git a/static/favicon-32x32.png b/static/favicon-32x32.png new file mode 100644 index 0000000..e343587 Binary files /dev/null and b/static/favicon-32x32.png differ diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100644 index 0000000..45d8bfe Binary files /dev/null and b/static/favicon.ico differ diff --git a/static/gradecoin.png b/static/gradecoin.png new file mode 100644 index 0000000..eeb670c Binary files /dev/null and b/static/gradecoin.png 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 @@ +-----BEGIN PUBLIC KEY----- +MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyGuqiCPGcguy+Y9TH7Bl +7XlEsalyqb9bYlzpbV0dnqZ3lPkEPkuOhkN+GcuiV6iXtSwyh7nB+xTRXKJFRUBO +/jbN8jfcxVwBu0JxjF3v1YRBxbOHhz2A295mbKD9xHQCKxkfYBNkUXxj8gd+GaDv +QiSW5NdrX/lEkvqfGtdEX1m2+HdcG0+3YW24Xg0znhCwLr+sorLuJaDy9Xa0Uo+D +PWGC5s001U/BxkCIWJ+eJQCb7Bv+9vXb8BGRK/ecMb/fb6h5O+8fgB64RCHMgcc2 +v+Q/dPt8kHX1OJdMuYUrUJGACppMQY3W6e1HdlRIBcZKL2LMZ2CrIB/2D5LiJhPT +hQIDAQAB +-----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 @@ +.content blockquote { + border-left: #689d6a 8px solid; + +} +.content blockquote.tidbit { + border-left: #928f74 8px solid; + font-size: 12px; + color: #282828; +} + +li p { + margin: 2px; +} + +/* OUTER CONTAINER */ +.tcontainer { + width: 100%; + overflow: hidden; /* Hide scroll bar */ +} + +/* MIDDLE CONTAINER */ +.ticker-wrap { + width: 100%; + padding-left: 100%; /* Push contents to right side of screen */ + background-color: #eee; +} + +/* INNER CONTAINER */ +@keyframes ticker { + 0% { transform: translate3d(0, 0, 0); } + 100% { transform: translate3d(-100%, 0, 0); } +} + +.ticker-move { + /* Basically move items from right side of screen to left in infinite loop */ + display: inline-block; + white-space: nowrap; + padding-right: 100%; + animation-iteration-count: infinite; + animation-timing-function: linear; + animation-name: ticker; + animation-duration: 30s; +} + +.ticker-move:hover{ + animation-play-state: paused; /* Pause scroll on mouse hover */ +} + +/* ITEMS */ +.ticker-item { + display: inline-block; /* Lay items in a horizontal line */ + padding: 0 5px; +} + +.ticker-item::before { + content: " ✑ "; +} -- cgit v1.2.3-70-g09d2