-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.css
More file actions
10 lines (10 loc) · 749 Bytes
/
game.css
File metadata and controls
10 lines (10 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
body { margin: 100px 500px; }
.grid { width: 400px;height: 400px;border: 1px solid #eee;position: absolute;box-sizing: border-box; background-color: #eee; }
.dot { width: 10px;height: 10px;background: #009688; position: absolute;margin-left: 3px;display: inline;border-radius: 10px;}
.food { width: 15px;height: 15px;position: relative;border-radius: 10px;background-color: red; }
.content{ float: left; }
.over { text-align: center;font-weight: bolder;margin: 100px;color: gray; }
#scoreId {font-weight: bold;color: #3F51B5;font-size: 25px;}
.startText { text-align: center;margin-left: 20px; }
#main { margin-bottom: 20px; padding: 10px;box-sizing: border-box; background-color: #eee; width: 400px;}
a { text-decoration: none;padding: 0px 5px; }