131 lines
2.2 KiB
CSS
131 lines
2.2 KiB
CSS
|
|
body {
|
|
font-family: sans-serif;
|
|
width: 400px;
|
|
}
|
|
#header h1{
|
|
color: #555;
|
|
font-size: 24px;
|
|
text-transform: uppercase;
|
|
padding: 0;
|
|
margin: 0;
|
|
display: block;
|
|
}
|
|
#header span {
|
|
color: #AAA;
|
|
font-size: 16px;
|
|
padding: 0;
|
|
margin: 0;
|
|
display: block;
|
|
}
|
|
#links-wrap{
|
|
width: 100%;
|
|
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
|
|
-moz-box-sizing: border-box; /* Firefox, other Gecko */
|
|
box-sizing: border-box; /* Opera/IE 8+ */
|
|
font-size: 12px;
|
|
word-wrap: break-word;
|
|
border: solid 1px #EEE;
|
|
padding: 12px;
|
|
float: left;
|
|
clear: left;
|
|
}
|
|
|
|
#downloadAsJSON{
|
|
cursor: pointer;
|
|
cursor: hand;
|
|
}
|
|
|
|
#links{
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
width: 100%;
|
|
float: left;
|
|
display: block;
|
|
}
|
|
#links li {
|
|
width: 100%;
|
|
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
|
|
-moz-box-sizing: border-box; /* Firefox, other Gecko */
|
|
box-sizing: border-box; /* Opera/IE 8+ */
|
|
display: block;
|
|
float: left;
|
|
margin-top: 4px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
a:link {
|
|
text-decoration: none;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
.removeBtn:before{
|
|
content:'x';
|
|
}
|
|
.removeBtn{
|
|
height: 15px;
|
|
width: 15px;
|
|
line-height: 15px;
|
|
float: left;
|
|
background-color: #BA0713;
|
|
color: #FFF;
|
|
margin-right: 10px;
|
|
font-weight: bolder;
|
|
padding: 0;
|
|
text-align: center;
|
|
content: '×';
|
|
cursor: pointer;
|
|
}
|
|
|
|
#container {
|
|
float: left;
|
|
width: 100%;
|
|
}
|
|
#addBtn{
|
|
float: right;
|
|
text-transform: uppercase;
|
|
font-size: 12px;
|
|
margin: 12px 6px;
|
|
cursor: pointer;
|
|
}
|
|
#addBtn:hover, #clearBtn:hover {
|
|
color: #259DFF;
|
|
text-decoration: underline;
|
|
}
|
|
#clearBtn{
|
|
float: right;
|
|
text-transform: uppercase;
|
|
font-size: 12px;
|
|
margin: 12px 6px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#message{
|
|
float: left;
|
|
margin: 12px 0;
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
padding: 0;
|
|
}
|
|
|
|
#source{
|
|
width: 100%;
|
|
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
|
|
-moz-box-sizing: border-box; /* Firefox, other Gecko */
|
|
box-sizing: border-box; /* Opera/IE 8+ */
|
|
float: left;
|
|
font-size: 10px;
|
|
text-align: center;
|
|
font-weight: bolder;
|
|
padding: 4px;
|
|
}
|
|
a, a:visited {
|
|
color: #7B838A;
|
|
}
|
|
a:hover {
|
|
color: #259DFF;
|
|
}
|