-
Notifications
You must be signed in to change notification settings - Fork 100
/
styles.css
84 lines (71 loc) · 1.55 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
body {
background-color: rgb(82, 86, 89);
}
canvas, .canvas-container {
-webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}
.toolbar {
width: 100%;
background-color: rgb(50, 54, 57);
height: 50px;
position: fixed;
top: 0;
left: 0;
z-index: 10;
}
#pdf-container {
margin-top: 60px;
padding-left: 10px;
text-align: center;
}
button:focus {
outline: 0;
}
.toolbar .tool {
display: inline-block;
color: #fff;
height: 100%;
padding-top: 10px;
padding-left: 10px;
margin-right: 5px;
}
.toolbar .tool label,
.toolbar .tool select,
.toolbar .tool input {
display: inline-block;
width: auto;
height: auto !important;
padding: 0;
}
.toolbar .tool input {
width: 50px;
}
.toolbar .tool .color-tool {
height: 25px;
width: 25px;
border-radius: 25px;
border: 0;
cursor: pointer;
display: inline-block;
}
.toolbar .tool .color-tool.active {
-webkit-box-shadow: 3px 4px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 3px 4px 5px 0px rgba(0,0,0,0.75);
box-shadow: 3px 4px 5px 0px rgba(0,0,0,0.75);
}
.toolbar .tool:nth-last-child(1) {
float: right;
}
.toolbar .tool .tool-button {
background-color: rgb(50, 54, 57);
border: 1px solid rgb(50, 54, 57);
color: #fff;
cursor: pointer;
}
.toolbar .tool .tool-button:hover,
.toolbar .tool .tool-button.active {
background-color: rgb(82, 86, 89);
border-color: rgb(82, 86, 89);
}