diff --git a/core/static/core/brain.png b/core/static/core/brain.png deleted file mode 100644 index 9d42630a5cf2dcd3d8932e3962a187439c04e60e..0000000000000000000000000000000000000000 Binary files a/core/static/core/brain.png and /dev/null differ diff --git a/core/static/core/snake.png b/core/static/core/snake.png new file mode 100644 index 0000000000000000000000000000000000000000..184a9210a61bbf6678e630eca489d25a71b09766 Binary files /dev/null and b/core/static/core/snake.png differ diff --git a/core/static/core/styles.css b/core/static/core/styles.css index 0e0103281a33e80ca246826556dadb31126f59ae..94a4c9f3cb604ba7564111ad426820bba91084d6 100644 --- a/core/static/core/styles.css +++ b/core/static/core/styles.css @@ -5,7 +5,7 @@ html { } body { - background-color:#321700; + background-color:#7df27b; color:white; font-family: Verdana, "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif; font-size:16pt; @@ -14,7 +14,7 @@ body { height: 100%; max-height: 100%; width: 100%; - background-image: url("/static/core/brain.png"); + background-image: url("/static/core/snake.png"); background-repeat: no-repeat; background-position: top 50px right -60px; } @@ -24,7 +24,7 @@ a { } ul.nav { - background-color:#613600; + background-color:#1fb731; text-align: center; padding: 4px 0; margin:0; @@ -46,11 +46,11 @@ ul.nav li a, .footer a { } ul.nav li:hover { - background-color: #804600; + background-color: #38ce35; } ul.sub.nav { - background-color: #492903; + background-color: #67d865; left: 50%; margin-top: 6px; position: relative; @@ -83,7 +83,7 @@ div.footer { bottom:0; width:100%; padding:3px; - background-color:#613600; + background-color:#1fb731; } #snake diff --git a/core/templates/core/index.html b/core/templates/core/index.html index d0814691eaeb665979b590d39910759a4bc065f2..089e13f407e19c92ae2604d99980a1ab873f0d80 100644 --- a/core/templates/core/index.html +++ b/core/templates/core/index.html @@ -20,9 +20,8 @@

Warning!
- We had to change the API last night, so the old sample code isn't running anymore.
- The result types of findFood() and findSegments() were changed so instead of using result:pairs() you have to use pairs(result).
- We apologize for the inconvenience. + Our database is only "kind of" stable
+ So we recommend that you backup your code locally

{% endblock %} \ No newline at end of file diff --git a/ide/static/ide/ide.css b/ide/static/ide/ide.css index 205bfb3b2d1a0f894e8b9ce8bf3aa1f5f92d9974..dc3cf5a628920b50ff88c120137330a2f927468c 100644 --- a/ide/static/ide/ide.css +++ b/ide/static/ide/ide.css @@ -18,18 +18,18 @@ #editor { grid-area: editor; font-size:18px; - background-color: #00000080; + background-color: #000000D0; } #preview { grid-area: preview; - background-color: #000000A0; + background-color: #000000D0; overflow:hidden; } #log { grid-area: log; - background-color: #00000080; + background-color: #000000D0; font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace; font-size: 11pt; overflow: scroll; @@ -52,7 +52,7 @@ #tools { grid-area: tools; - background-color: #00000080; + background-color: #000000D0; } #toolbar