Skip to content

Commit 00167b5

Browse files
committed
Drip plugin functioning, now just need to do the markdown page!
0 parents  commit 00167b5

11 files changed

Lines changed: 638 additions & 0 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# OS Noise
2+
.DS_Store

css/admin.css

Lines changed: 156 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,156 @@
1+
/* Clearfix */
2+
3+
.drip-clearfix:after {
4+
content: ".";
5+
display: block;
6+
clear: both;
7+
visibility: hidden;
8+
line-height: 0;
9+
height: 0;
10+
}
11+
12+
.drip-clearfix {
13+
display: inline-block;
14+
}
15+
16+
html[xmlns] .drip-clearfix {
17+
display: block;
18+
}
19+
20+
* html .drip-clearfix {
21+
height: 1%;
22+
}
23+
24+
/* Settings */
25+
26+
#icon-options-drip {
27+
background: transparent url(../images/drip-icon-64.png) left top no-repeat;
28+
background-size: 32px;
29+
}
30+
31+
.drip-visit {
32+
margin-left: 4px;
33+
padding: 3px 8px;
34+
position: relative;
35+
top: -3px;
36+
text-decoration: none;
37+
font-size: 12px;
38+
border: 0 none;
39+
background: #f1f1f1;
40+
color: #21759B;
41+
border-radius: 3px;
42+
-moz-border-radius: 3px;
43+
-webkit-border-radius: 3px;
44+
border-width: 1px;
45+
}
46+
47+
.drip-settings-banner {
48+
margin: 15px 0 20px 0;
49+
padding: 20px 22px;
50+
/* width: 450px; */
51+
max-width: 600px;
52+
background-color: #eeeeee;
53+
box-shadow: inset 0 0 25px rgba(0,0,0,0.08);
54+
-moz-box-shadow: inset 0 0 25px rgba(0,0,0,0.08);
55+
-webkit-box-shadow: inset 0 0 25px rgba(0,0,0,0.08);
56+
border-radius: 4px;
57+
-moz-border-radius: 4px;
58+
-webkit-border-radius: 4px;
59+
border: 1px solid #d0d0d0;
60+
}
61+
62+
.drip-settings-banner h3 {
63+
margin-top: 0;
64+
}
65+
66+
.drip-settings-banner h3 span.drip-popdown {
67+
margin: 0 10px;
68+
font-size: 10px;
69+
}
70+
71+
.drip-settings-banner h3 span.drip-popdown a {
72+
text-decoration: none;
73+
}
74+
75+
span.drip-popdown {
76+
position: relative;
77+
}
78+
79+
span.drip-popdown div.message {
80+
position: absolute;
81+
display: none;
82+
left: 50%;
83+
top: 25px;
84+
margin-left: -75px;
85+
width: 150px;
86+
padding: 5px;
87+
font-size: 10px;
88+
text-align: center;
89+
color: #fff;
90+
background-color: #00000;
91+
background-color: rgba(0,0,0,0.75);
92+
border-radius: 3px;
93+
-moz-border-radius: 3px;
94+
-webkit-border-radius: 3px;
95+
}
96+
97+
span.drip-popdown div.message::before {
98+
content: "";
99+
display: block;
100+
position: absolute;
101+
margin: -5px 0 0 -5px;
102+
top: 0;
103+
left: 50%;
104+
width: 0;
105+
height: 0;
106+
border-top: 0;
107+
border-bottom: 5px solid rgba(0,0,0,0.75);
108+
border-left: 5px solid transparent;
109+
border-right: 5px solid transparent;
110+
}
111+
112+
span.drip-popdown:hover div.message {
113+
display: block;
114+
}
115+
116+
.drip-settings-banner p {
117+
margin: 0 0 18px 0;
118+
line-height: 20px;
119+
}
120+
121+
.drip-settings-banner p.drip-closer {
122+
margin: 0 150px 0 0;
123+
}
124+
125+
.drip-settings-banner a.drip-button {
126+
display: block;
127+
padding: 0 15px;
128+
float: right;
129+
border-radius: 3px;
130+
-moz-border-radius: 3px;
131+
-webkit-border-radius: 3px;
132+
background-color: #f4a931;
133+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9af3a', endColorstr='#f1a42b'); /* for IE */
134+
background: -webkit-gradient(linear, left top, left bottom, from(#f9af3a), to(#f1a42b)); /* for webkit browsers */
135+
background: -moz-linear-gradient(top, #f9af3a, #f1a42b); /* for firefox 3.6+ */
136+
box-shadow: inset 0 1px 0px rgba(255,255,255,0.1), 0 1px 2px #d4d4d4;
137+
-moz-box-shadow: inset 0 1px 0px rgba(255,255,255,0.1), 0 1px 2px #d4d4d4;
138+
-webkit-box-shadow: inset 0 1px 0px rgba(255,255,255,0.1), 0 1px 2px #d4d4d4;
139+
text-shadow: 0 2px #f7c16a;
140+
-moz-text-shadow: 0 2px #f7c16a;
141+
-webkit-text-shadow: 0 2px #f7c16a;
142+
border: 1px solid #e59923;
143+
font-size: 14px;
144+
font-weight: bold;
145+
color: #8a5c13;
146+
cursor: pointer;
147+
line-height: 42px;
148+
text-decoration: none;
149+
}
150+
151+
.drip-settings-banner a.drip-button:hover {
152+
background-color: #f5ad3a;
153+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9b549', endColorstr='#f2a833'); /* for IE */
154+
background: -webkit-gradient(linear, left top, left bottom, from(#f9b549), to(#f2a833)); /* for webkit browsers */
155+
background: -moz-linear-gradient(top, #f9b549, #f2a833); /* for firefox 3.6+ */
156+
}

0 commit comments

Comments
 (0)