53 lines
904 B
CSS
Executable File
53 lines
904 B
CSS
Executable File
body {
|
|
font-family: 'Trebuchet MS', Arial;
|
|
background-image: url('../images/TheUnderland.png');
|
|
background-repeat: no-repeat;
|
|
background-attachment: fixed;
|
|
background-size: 100% 100%;
|
|
|
|
}
|
|
|
|
table {
|
|
box-shadow: 0px 0px 36px 15px rgba(255, 255, 255, 0.28);
|
|
background-color: transparent;
|
|
border-collapse:separate;
|
|
border:solid white 1px;
|
|
border-radius:8px;
|
|
}
|
|
|
|
footer {
|
|
background-color: red;
|
|
}
|
|
|
|
article, p, h1, h2, h3, h4, h5, h6 {
|
|
color: white;
|
|
}
|
|
|
|
a:link {
|
|
color: blue;
|
|
}
|
|
a:visited {
|
|
color: red;
|
|
}
|
|
a:hover {
|
|
color: lime;
|
|
}
|
|
a:active {
|
|
color: pink;
|
|
}
|
|
|
|
.desaturate {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
/*grayscale for background image*/
|
|
background-color: #FFF;
|
|
background-blend-mode: luminosity, normal;
|
|
}
|
|
|
|
table, th, td {
|
|
border: 1px solid;
|
|
}
|