-
Notifications
You must be signed in to change notification settings - Fork 5
/
global.css
77 lines (63 loc) · 1.23 KB
/
global.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
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 400;
src: local('Source Sans Pro'), local('SourceSansPro-Regular'), url(http://themes.googleusercontent.com/static/fonts/sourcesanspro/v7/ODelI1aHBYDBqgeIAH2zlBM0YzuT7MdOe03otPbuUS0.woff) format('woff');
}
body *{
font-family: Source Sans Pro,Verdana,Calibri,"Liberation Sans",Arial,sans,sans-serif;
color: #333;
}
emph {
font-style:italic;
}
h3 {
font-size: 1.3em;
}
a {
outline: none; /* do not draw a dotted rectangle around a focused anchor */
}
.toolButton {
margin: 2px;
width: 48px;
height: 48px;
background-color:white;
}
.toolButton:hover {
margin: 0px;
border: 2px solid #CCC;
}
.toolButtonClicked {
margin: 0px;
border: 2px solid #C55;
width: 48px;
height: 48px;
background-color:white;
}
#canvasContainer {
position:fixed;
right:0px;
bottom: 0px;
}
.toolWindow {
position:fixed;
top:72px;
z-index:1;
background-color:white;
}
.toolOverlay {
left:10px;
width:400px;
/* max-height:400px; */
}
.toolSide {
left:0px;
max-width:40%;
height:100%;
bottom:0px;
}
.toolTop {
left:0px;
right:0px;
width:100%;
}