-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
116 lines (99 loc) · 1.47 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
@import "./icons/css/rc.css";
body {
background-color: #fff;
user-select: none;
overflow: hidden;
}
.svg {
margin: auto;
top: 0; right: 0;
left: 0;
position: absolute;
border-radius: 5px;
cursor: crosshair;
}
/*
.mobile {
transform: rotate(90deg);
left: -20%;
}*/
.controls {
/*box-shadow: 0 0 20px 0px rgba(0,0,0,.3);*/
border-top: 1px dashed black;
border-radius: 5px;
font-family: courier;
/*font-weight: bold;*/
z-index: 100;
background-color: "#fff";
position: absolute;
text-align: center;
left: 0; right: 0;
width: 100%;
height: 50px;
bottom: 5px;
padding: 20px 0;
margin: auto;
background-color: #fff;
}
.zoomed {
zoom: 150%;
}
.display {
z-index: -1;
width: 100%;
font-size: 90%;
position: absolute;
/*top: 0;*/
margin: 15px;
cursor: default;
}
#gen {
float: left;
}
#speed {
float: right;
margin-right: 30px;
}
i {
background-color: #ccc;
cursor: pointer;
padding: 5px;
border-radius: 3px;
color: black;
font-size: 90%;
}
#brush {
background-color: #fff;
}
#erase {
background-color: #fff;
}
.selected {
border: 2px solid #bd5 !important;
/*box-shadow: 0 0 10px 3px rgba(70,200,40,1);*/
}
i:active {
background-color: #000;
color: #fff;
border-radius: 3px;
}
rect:active {
cursor: crosshair;
fill: #bd5;
}
@media screen and (min-width: 500px){
.controls {
height: 20px;
}
.display {
top: 10px;
}
i:hover {
background-color: #ddd;
color: black;
}
rect:hover {
cursor: crosshair;
fill: #bd5;
}
}