1
0
mirror of https://github.com/danbee/myimages synced 2025-03-04 08:39:09 +00:00
myimages/images/style/style.css
Dan Barber faf45ef189 + Added links to preview image.
~ Changed preview size to 600px.
~ Styled links.
2010-03-10 12:40:14 +00:00

87 lines
1.4 KiB
CSS

body {
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
background: white;
color: #333;
text-align: center;
padding: 20px 10%;
}
h1 {
font-size: 30px;
font-weight: bold;
margin-bottom: 50px;
}
input.imagelink {
border: 1px solid #999;
background: #eee;
color: #666;
padding: 3px;
width: 120px;
font-size: 11px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
}
a {
text-decoration: none;
color: #999;
}
a:hover {
color: #333;
}
.button {
border-top: 1px solid #aaa;
border-left: 1px solid #aaa;
border-bottom: 1px solid #777;
border-right: 1px solid #777;
background: #888;
color: white;
padding: 5px 10px;;
font-size: 11px;
font-weight: bold;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
text-decoration: none;
}
ul#files {
padding: 0;
list-style: none;
}
ul#images {
padding: 0;
}
ul#images li {
margin: 10px;
display: inline-block;
position: relative;
color: #666;
font-size: 11px;
}
ul#images li .image {
position: relative;
width: 104px;
margin: 0px auto 5px;
height: 104px;
/* background: black;
border: 1px solid #666; */
}
ul#images li .image img {
padding: 3px;
border: 1px solid #aaa;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
}
.image .imagedel {
display: none;
background: url(fancy_delete.png);
position: absolute;
width: 20px;
height: 20px;
bottom: 3px;
left: 3px;
}
.image:hover .imagedel {
display: block;
}
.progress {
font-weight: bold;
}