-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcss-toolbox.css
More file actions
139 lines (109 loc) · 2.42 KB
/
css-toolbox.css
File metadata and controls
139 lines (109 loc) · 2.42 KB
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/* Defining the style of the toolbox itself */
.cpanel{
background-color: #DBD1AB;
box-shadow: 0px 0px 3px 3px #000;
border-radius: 10px;
font-family: Arial, Helvetica, sans-serif;
}
.cpanel#main{
position: absolute;
top: 90px;
left: 6px;
}
.cpanel-main-size1{
transition: width 0.7s, height 0.7s;
width: 700px;
height: 400px;
}
.cpanel-main-size2{
transition: width 0.7s, height 0.7s;
width: 472px;
height: 700px;
}
.cpanel-main-size3{
transition: width 0.7s, height 0.7s;
width: 1000px;
height: 750px;
}
#cpanel-title-strip{
border-bottom: 2px solid #404040;
background: -moz-linear-gradient(left, #4b9bd8 0%, #a6c8f4 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, #4b9bd8 0%,#a6c8f4 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, #4b9bd8 0%,#a6c8f4 100%); /* W3C, IE10+, etc...*/
border-radius: 10px 10px 0px 0px;
height: 65px;
}
.cpanel-title{
position: absolute;
left: 20px;
cursor:crosshair;
}
#cpanel-title-1{
top: 4px;
color: #7211A1;
font-size: 34px;
font-family: sans;
}
#cpanel-title-2{
top: 41px;
color: #C03609;
}
/* Defining the style of Badges shown on toolbox header... */
.badge{
position: absolute;
top: 7px;
width: 50px;
height: 50px;
border-radius: 25px;
border: 1px solid #3300A0;
text-align: center;
background: #F4C33F;
color: #3300A0;
cursor:crosshair;
}
.badge:hover {
text-decoration: underline;
background: #FD913E;
}
.badge-content {
position: relative;
top: 50%;
transform: translateY(-50%);
}
#cpanel-title-drag{
right: 7px;
}
#cpanel-title-hide{
right: 68px;
}
/* TOOLBOX main tabs - (this is the line underneath them) */
#cpanel-main-tabs > ul{
border-bottom: 1px solid #404040;
}
#toast-box{
display: none;
z-index: 3;
position: absolute;
left: 50%;
bottom: 50px;
transform: translateX(-50%);
background-color: rgba(153, 206, 255, 0.7);
border: 3px solid rgba(39, 105, 180, 0.7);
padding: 5px 14px;
border-radius: 15px;
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
font-weight: bold;
color: rgba(4, 50, 63, 0.9);
}
/* 3. Backgrounds */
/* 3.1 - Underlying SVGs */
body > #backgrounds {
z-index: -2;
}
body > #backgrounds > svg {
z-index: 0;
position: absolute;
top:0;
left: 0;
}