forked from shaunandrews/title-prompt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
title-prompt.css
39 lines (35 loc) · 881 Bytes
/
title-prompt.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
/*------------------------------------------------------------------------------
Some tweaks to the title prompt.
------------------------------------------------------------------------*/
#post-title {}
#post-title #title-prompt {
position: absolute;
top: 0;
right: 0;
padding: 12px 0;
text-indent: 9px;
font-weight: 200;
font-size: 1.7em;
width: 100%;
color: #ccc;
color: rgba(0,0,0,0.5);
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
#post-title #title-prompt.active {
width: 160px;
color: #efefef;
color: rgba(0,0,0,0.2);
}
#post-title #title {
font-weight: 200;
}
/* MP6 has some slightly different padding for the input */
.mp6 #post-title {}
.mp6 #post-title #title-prompt {
padding: 10px 0;
}
.mp6 #post-title #title-prompt.active {
width: 170px;
}