33 lines
495 B
CSS
33 lines
495 B
CSS
|
body {
|
||
|
width: 100%;
|
||
|
margin: 1em auto 3em auto;
|
||
|
background-color: #262626;
|
||
|
color: #fff;
|
||
|
font-family: Monospace;
|
||
|
}
|
||
|
.body {
|
||
|
width: 90%;
|
||
|
margin: 1em auto 3em auto;
|
||
|
background-color: #262626;
|
||
|
color: #fff;
|
||
|
font-family: Monospace;
|
||
|
}
|
||
|
.thumb {
|
||
|
border: 0;
|
||
|
margin: 0 8px 8px 0;
|
||
|
float: left;
|
||
|
border: 2px solid #4c4a4a;
|
||
|
}
|
||
|
.thumb:hover {
|
||
|
opacity: 0.7;
|
||
|
}
|
||
|
.clear {
|
||
|
clear: both;
|
||
|
padding: 1em 0;
|
||
|
}
|
||
|
a {
|
||
|
color: #9f0;
|
||
|
}
|
||
|
a:hover {
|
||
|
color: #74c100;
|
||
|
}
|