index/style.css

38 lines
663 B
CSS
Raw Normal View History

2016-06-26 19:45:51 +02:00
body {
font-family:helvetica;
2016-06-26 23:14:42 +02:00
background:url("background.png") no-repeat center/cover fixed;
2016-06-26 19:45:51 +02:00
}
#content {
width:90%;
margin-left:auto;
margin-right:auto;
top:50px;
2016-08-15 22:11:36 +02:00
font-family: "Camcorder Monospaced", "Helvetica", sans-serif;
2016-06-26 19:45:51 +02:00
height:90%;
/*color: #595959;*/
2016-08-15 22:11:36 +02:00
/*color: #eeeeee;*/
color: rgba(238,238,238, 0.8);
2016-06-26 19:45:51 +02:00
position:relative;
top:50px;
}
a {
font-size: 24px;
/*color: #595959;*/
color: #eeeeee;
2016-06-27 01:55:14 +02:00
transition: color .1s;
2016-06-26 19:45:51 +02:00
text-decoration: none;
}
a:hover {
2016-06-29 00:23:12 +02:00
text-decoration:underline;
}
#pi {
font-size: 0.8em;
position: fixed;
bottom: 5px;
right: 5px;
color: #eeeeee;
background-color: rgba(0,0,0,0.5);
padding: 5px;
text-align: right;
2016-06-26 19:45:51 +02:00
}