added successfully installed drop down

This commit is contained in:
Andy Chung 2010-09-23 15:15:29 -07:00
Родитель 41188d29b2
Коммит 8919d8026a
3 изменённых файлов: 37 добавлений и 3 удалений

Двоичные данные
web/frontpage/i/shareIcon.png Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 1.2 KiB

Просмотреть файл

@ -8,8 +8,14 @@
</head>
<body>
<div id="installed">
Congratulations, you installed Linkdrop. Click on the button to start to share.
<button id="installClose">Hide</button>
<div class="installWrapper">
<div class="c2">
<strong>Congratulations</strong>, you installed Linkdrop! Hit the &nbsp;<img src="i/shareIcon.png">&nbsp; button in your toolbar to start using Linkdrop - enjoy!
</div>
<div class="c1">
<a id="installClose">hide</a>
</div>
</div>
</div>
<div id="wrapper">
<div id="header" class="row">

Просмотреть файл

@ -26,6 +26,10 @@ a:hover {
text-decoration: underline;
}
strong {
font-weight: bold;
}
/* grid */
.c1, .c2, .c3 {
@ -60,7 +64,31 @@ a:hover {
/* end grid */
#installed {
display: none;
display: none;
background-color: #fdff94;
border-bottom: 1px solid #e6e6e6;
padding: 50px 0;
}
#installed .installWrapper {
width: 720px;
margin: 0 auto;
overflow: hidden;
}
#installed img {
vertical-align: top;
}
a#installClose {
cursor: pointer;
color: #ff5959;
float: right;
}
a#installClose:hover {
text-decoration: none;
color: red;
}
#wrapper {