| @-moz-document domain("zhihu.com") { | |
| body { | |
| font-family: var(--SanFrancisco); | |
| } | |
| .zu-top { | |
| background: white; | |
| border-top: 3px solid #b92b27; | |
| /*#086ed5*/ | |
| box-shadow: 0 5px 2px -2px rgba(200,200,200,0.2); | |
| border-bottom: none; |
| /* | |
| * robotMaze.js | |
| * | |
| * The blue key is inside a labyrinth, and extracting | |
| * it will not be easy. | |
| * | |
| * It's a good thing that you're a AI expert, or | |
| * we would have to leave empty-handed. | |
| */ |
| /************* | |
| * ambush.js * | |
| ************* | |
| * | |
| * Oh. Oh, I see. This wasn't quite part of the plan. | |
| * | |
| * Looks like they won't let you take the Algorithm | |
| * without a fight. You'll need to carefully weave your | |
| * way through the guard drones. | |
| * |
| var App = angular.module('App', []); | |
| App.controller('TodoCtrl', function($scope, $http) { | |
| $http.get('todos.json') | |
| .then(function(res){ | |
| $scope.todos = res.data; | |
| }); | |
| }); |