-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
57 lines (57 loc) · 969 Bytes
/
styles.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
* {
margin: 0px;
padding: 0px;
}
body {
background-color: #e2e2e2;
}
header {
background-color: #b7b7b7;
}
h1 {
color: #cecece;
font-family: 'Roboto', sans-serif;
padding: 20px 0px 20px 90px;
/*font-family: 'Karla', sans-serif;*/
/*font-family: 'Questrial', sans-serif;*/
}
main {
height: 100%;
}
.interface {
padding: 5px;
background-color: #b7b7b7;
}
button {
background-color: #e2e2e2;
font-family: 'Roboto', sans-serif;
text-transform: uppercase;
border-style: none;
padding: 2px;
margin: 10px 0px 10px 89px;
}
#palette {
margin: 10px 0px 10px 89px;
position: absolute;
right: 20px;
bottom: 20px;
}
#palette > div {
display: inline-block;
width: 50px;
height: 50px;
}
canvas {
padding: 50px;
background-position: center;
background-repeat: no-repeat;
/*background-image: url(img/pencil-throbber.gif);*/
}
.disabled {
opacity: 0.6;
cursor: not-allowed;
}
.centre {
display: block;
margin: auto;
}