Skip to content

Commit 0b40b39

Browse files
committed
Initial commit for release 0.0.1
1 parent 46cf25d commit 0b40b39

10 files changed

Lines changed: 1369 additions & 0 deletions

File tree

css/colpick.css

Lines changed: 410 additions & 0 deletions
Large diffs are not rendered by default.

css/sfe.css

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
div.sp-callout {
2+
height: 100px;
3+
width: 350px;
4+
position: absolute;
5+
background-color: #ddd;
6+
box-sizing: border-box;
7+
border: 1px solid black;
8+
padding: 15px;
9+
z-index: 9999;
10+
border-radius: 5px;
11+
/*opacity: 0.8;*/
12+
/*font-size: 1.1em;*/
13+
}

css/sfe_options.css

Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
* {
2+
padding: 0;
3+
margin: 0;
4+
}
5+
6+
body {
7+
font-family: Helvetica, Arial, sans-serif;
8+
background-color: #eee;
9+
font-size: 0.9em;
10+
}
11+
12+
h2 {
13+
width: 100%;
14+
border-bottom: 1px solid #bbb;
15+
margin-bottom: 0.8em;
16+
}
17+
18+
h3 {
19+
margin-bottom: 0.6em;
20+
}
21+
22+
#wrapper {
23+
margin: 0 auto;
24+
width: 60%;
25+
26+
}
27+
28+
header, #content, footer {
29+
width: 100%;
30+
box-sizing: border-box;
31+
}
32+
33+
header {
34+
margin-top: 2em;
35+
color: #fff;
36+
border: 1px solid #003f7e;
37+
background: #006dda;
38+
padding: 0.8em;
39+
}
40+
41+
#content {
42+
border: 1px solid #ccc;
43+
background: #f6f6f6;
44+
margin: 0.8em 0 0.8em 0;
45+
padding: 2em;
46+
}
47+
48+
footer {
49+
border: 1px solid #999;
50+
background: #ccc;
51+
text-align: center;
52+
font-size: 0.9em;
53+
padding: 0.4em;
54+
margin-bottom: 2em;
55+
}
56+
57+
.option {
58+
margin: 1.8em 0 1.8em 0;
59+
}
60+
61+
.option .control {
62+
margin-bottom: 0.6em;
63+
}
64+
65+
.option label {
66+
font-weight: bold;
67+
width: 10em;
68+
display: inline-block;
69+
}
70+
71+
.helptext {
72+
color: #4c4c4c;
73+
}
74+
75+
.option .helptext {
76+
font-size: 0.9em;
77+
padding-left: 1.2em;
78+
}
79+
80+
p:not([class="helptext"]) {
81+
margin-bottom: 0.5em;
82+
}
83+
84+
.color-box {
85+
width: 1.4em;
86+
height: 1.4em;
87+
border: 1px solid #000;
88+
display: inline-block;
89+
}
90+
91+
#restore-defaults {
92+
margin-bottom: 4em;
93+
display: block;
94+
}
95+
96+
a, a:visited, a:active {
97+
color: #00f;
98+
}
99+
100+
a:hover {
101+
color: #000;
102+
}
103+
104+
footer a, footer a:visited, footer a:active {
105+
color: #000;
106+
}
107+
108+
footer a:hover {
109+
color: #cc5200;
110+
}
111+
112+
.external-links {
113+
list-style: none;
114+
padding-left: 1.2em;
115+
}
116+
117+
.external-links li {
118+
padding: 0.1em;
119+
}

0 commit comments

Comments
 (0)