-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (46 loc) · 905 Bytes
/
style.css
File metadata and controls
53 lines (46 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
body {
margin: 0;
background: #ededed;
color: #666;
font: 14px/23px Arial, Verdana, sans-serif;
overflow: hidden;
}
html {
overflow: -moz-scrollbars-vertical;
overflow-y: scroll;
}
a {
color: #70a23e;
}
#main {
background: #d3d3d3;
width: 100%;
height: 2000px;
padding: 30px;
}
#container {
padding-top: 10px;
margin: 0 auto;
width: 500px;
/* height:600px; */
}
#note {
width: 500px;
margin: 15px auto 15px auto;
padding: 15px;
border: 1px solid gray;
text-align: center;
}
/* Give canvas a background */
canvas {
background-color: black;
width: 500px;
height: 500px;
}
* {
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box; /* Firefox, other Gecko */
box-sizing: border-box; /* Opera/IE 8+ */
/* avoid green selection color in android browser */
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}