-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsketchy.css
84 lines (74 loc) · 1.48 KB
/
sketchy.css
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
* {
margin: 0;
padding: 0;
}
#border {
box-sizing: border-box;
position: relative;
display: block;
margin: 20px auto;
max-width: 800px;
max-height: 800px;
background-color: #d00;
border-radius: 10px;
border-style: solid;
border-width: 6px;
border-color: #ea6666 #b00000 #b00000 #ea6666;
}
h1 {
position: absolute;
top: 20px;
left: 40px;
font-family: "Dancing Script", cursive;
color: #dedf24;
}
#canvas {
box-sizing: border-box;
margin: 80px 65px;
width: 100%;
height: 100%;
max-width: 670px;
max-height: 640px;
min-height: 340px;
background-color: #faffd5;
border-style: solid;
border-width: 5px;
border-color: #b00000 #ea6666 #ea6666 #b00000;
border-radius: 6px;
box-shadow: inset 6px 6px 10px #afb295;
}
#left-button, #right-button {
box-sizing: border-box;
position: absolute;
margin: 0 auto;
top: 430px;
height: 60px;
width: 60px;
border-radius: 30px;
background-color: #eaeaea;
border-style: solid;
border-color: #fff #ccc #ccc #fff;
box-shadow: 4px 4px 10px #b00000;
}
#left-button {
left: 20px;
}
#right-button {
left: 710px;
}
#left-button:hover {
background-color: #ddd;
}
.grid-row {
display: block;
}
.grid-square {
/* how do I dynamically define a height and width for grid squares? */
display: block;
height: 10px;
width: 10px;
float: left;
}
.colored {
background-color: #333;
}