-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
77 lines (63 loc) · 934 Bytes
/
style.scss
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
@import 'normalize';
@import url(http://fonts.googleapis.com/css?family=Inconsolata);
body {
font-family: Inconsolata, monospace;
}
canvas {
outline: none;
}
.wrapper {
padding: 50px;
overflow: auto;
}
.controls {
float: left;
width: 300px;
}
.settings--hidden {
display: none;
}
.settings__title {
text-align: center;
}
fieldset {
background-color: #c5c5d0;
box-shadow: 6px 6px black;
margin: 20px 0;
}
label {
display: block;
}
legend {
display: block;
}
input[type=range] {
width: 100%;
}
#brush {
display: block;
margin: 0 auto;
}
.buttons {
margin: 40px 0;
text-align: center;
}
.btn {
padding: 8px 12px;
background-color: #c5c5d0;
color: black;
text-decoration: none;
box-shadow: 3px 3px black;
margin-left: 5px;
margin-right: 5px;
}
.draw-area {
float: right;
}
#canvas {
margin: auto 0;
display: block;
max-width: 100%;
float: right;
height: auto;
}