This repository has been archived on 2020-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
codesite/static/style.css

110 lines
1.3 KiB
CSS
Raw Normal View History

2013-09-21 03:10:24 +00:00
/* style.css */
img {
border:0;
}
a {
color:black;
}
a:hover {
color:blue;
}
h1,h2,h3 {
margin-top:0;
}
/* */
html, body {
/* structural */
height:100%;
margin:0;
border:0;
padding:0;
/* cosmetic */
background:#DDD url('pixel_weave.png'); /* thanks subtlepatterns.com ! */
color:#333;
}
#container {
margin:0 auto;
width:768px;
position:relative;
height:auto !important;
height:100%; /* oldIE */
min-height:100%;
/* cosmetic */
background:white;
}
#content {
padding:14px;
background:white;
}
/* */
.projtable {
}
.projtable tr {
border-collapse: collapse;
}
.projtable td {
2013-09-21 07:01:49 +00:00
padding: 2px 4px;
2013-09-21 03:10:24 +00:00
}
.projtable small {
color:grey;
font-style:italic;
}
2013-09-21 03:10:24 +00:00
.projinfo {
position:relative;
}
.projbody {
position:absolute;
left:0;
}
.projbody_halfw {
right: 74px;
}
.projbody_fullw {
right:0;
2013-09-21 03:10:24 +00:00
}
.projimg {
position:absolute;
right:0;
width:62px; /* 60px + 2px border */
2013-09-21 03:10:24 +00:00
}
/* */
.headimg {
width:310px;
height:62px;
}
.homeimage {
width:90px;
2013-09-21 07:01:49 +00:00
height:32px;
}
.homeimage-sprite {
background: white url('logos.jpg') no-repeat 0 0;
2013-09-21 03:10:24 +00:00
}
.thumbimage {
width:60px;
height:60px;
opacity: 0.8;
transition:0.2s opacity;
border:1px solid lightgrey;
2013-09-21 03:10:24 +00:00
}
.thumbimage:hover {
opacity:1.0;
}