-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
81 lines (66 loc) · 1.24 KB
/
style.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
@font-face {
scr: url(fonts/Roboto-Black.ttf) format("truetype")
}
* {
box-sizing:border-box;
}
html {
background: rgb(50,50,50);
color: rgb(204, 204, 204);
font-family: 'Roboto-Black';
}
#hiddenCanvas {
display: none;
}
.settingContainer {
width:100%;
height:2rem;
margin-top:.5rem;
padding-left:20px;
}
.settingContainer > p {
margin-top: 0;
margin-bottom:0;
margin-right: 20px;
float:left;
}
.settingContainer > button {
float:right;
}
.settingContainer > input, .settingContainer > #inputTarget {
float:right;
text-align: right;
}
.settingContainer > #inputTarget {
color:black;
background-color: white;
}
.settingContainer > .divbutton {
height:2rem;
width:2rem;
float:left;
background-color:rgb(150,150,150);
text-align:center;
margin-left:10px;
border-width:2px;
padding:3px;
border-color:white;
border-style: solid;
}
.settingContainer > .divbutton.reset {
width:4rem;
}
.left {
width:50%;
height:auto;
float:left;
padding-right:20px;
}
.right {
width:50%;
height:auto;
float:right;
}
#canvasDiv {
clear:both;
}