-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
65 lines (58 loc) · 1.21 KB
/
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
58
59
60
61
62
63
64
65
.flex {
height: auto;
width: auto;
display: flex;
justify-content: center;
}
#size {
width: 50px;
}
.modes {
display: block;
margin: 20px;
width: 100%;
table-layout: fixed;
border-collapse: collapse;
}
button {
background-color: #FFFFFF;
color: #000000;
border: 1px solid #222222;
box-sizing: border-box;
color: #222222;
cursor: pointer;
display: inline-block;
font-family: Circular,-apple-system,BlinkMacSystemFont,Roboto,"Helvetica Neue",sans-serif;
font-size: 16px;
font-weight: 600;
line-height: 20px;
margin: 0;
outline: none;
padding: 13px 23px;
position: relative;
text-align: center;
text-decoration: none;
touch-action: manipulation;
transition: box-shadow .2s,-ms-transform .1s,-webkit-transform .1s,transform .1s;
user-select: none;
-webkit-user-select: none;
width: auto;
}
button:hover {
box-shadow: 2px 2px;
transition: box-shadow .2s;
}
button:active {
background-color: #F7F7F7;
transform: scale(.98);
}
.enabled {
background-color: #000000;
color: #FFFFFF;
}
.canvas {
border: #000000 1px solid;
padding: 8px;
left: 20px;
position:relative;
}