newsletter/newsletter.css

79 lines
1.3 KiB
CSS
Raw Normal View History

2010-03-31 14:28:39 +00:00
body {
margin: 0;
padding: 0;
font-size: 10pt;
font-family: Arial;
2010-05-17 22:51:37 +00:00
background: #404040;
background-image: -moz-linear-gradient(top, #404040, #aaaaaa);
2010-05-17 23:11:23 +00:00
background-image: -webkit-gradient(
linear,
center top,
center bottom,
color-stop(0.75, rgb(170,170,170)),
color-stop(0.29, rgb(64,64,64))
);
2010-03-31 14:28:39 +00:00
}
#nav {
position: fixed;
left: 16px;
top: 16px;
margin: 0;
2010-05-17 22:51:37 +00:00
padding: 10px;
border-radius: 8px;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
color: #000;
background: #A0A0A0;
2010-03-31 14:28:39 +00:00
}
#nav li {
display: linline;
list-style-type:none;
}
.title {
font-weight: bold;
}
2010-05-17 22:51:37 +00:00
2010-03-31 14:28:39 +00:00
#content {
2010-05-17 22:51:37 +00:00
box-shadow: 0px 0px 1em;
-moz-box-shadow: 0px 0px 2em rgba(30,30,30,0.7);
-webkit-box-shadow: 0px 0px 2em rgba(30,30,30,0.7);
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
background: #000;
color: #ccc;
width: 600px;
margin-left: 168px;
margin-top: 25px;
margin-bottom: 40px;
padding: 10px;
2010-03-31 14:28:39 +00:00
}
2010-05-17 22:51:37 +00:00
2010-03-31 14:28:39 +00:00
a {
2010-05-17 22:51:37 +00:00
color: #ffff00;
text-decoration: none;
outline: none;
2010-03-31 14:28:39 +00:00
}
2010-05-17 22:51:37 +00:00
a:hover {
color: #ffff00;
-moz-text-shadow: 1px 1px 1px #666;
-webkit-text-shadow: 1px 1px #666;
text-shadow: 1px 1px 1px #666;
}
#logo {
position: fixed;
top: 20px;
right: 20px;
width: 128px;
height: 128px;
}
#logo a img {
border: 0px;
}