blob: 82045d183185fbd4bcc371627609984c4783abad (
plain)
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
|
body {
padding: 0,2;
margin: 0;
background: #222222;
}
.wrapper {
max-width: 900px;
margin: auto;
font-family: "Arial";
}
.toolbar{
width: 100%;
background-color: #440044;
overflow: auto;
}
.toolbar a {
float: left;
width: 11%;
text-align: center;
padding: 6px 5px;
transition: all 0.5s ease;
color: white;
}
/* Change color on hover */
.toolbar a:hover {
background-color: #000;
}
/* Change color on selected icon */
.selected {
background-color: #000;
}
#my-canvas{
width: 100%;
background: white;
border: 3px solid #000000;
}
#img-data-div{
width: 100%;
max-width: 900px;
height: 200px;
}
/* Resize image to container */
.toolbar a img{
max-width:100%;
height:auto;
}
|