33 lines
606 B
CSS
33 lines
606 B
CSS
|
html {
|
||
|
color: white;
|
||
|
padding: 8% 0;
|
||
|
font-size: 1.4em;
|
||
|
text-align: center;
|
||
|
background-color: #000;
|
||
|
}
|
||
|
body {
|
||
|
width: 80%;
|
||
|
margin: auto;
|
||
|
padding: 0.6em 1em;
|
||
|
box-shadow: 0 0 7em white;
|
||
|
font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
|
||
|
background-color: #000;
|
||
|
}
|
||
|
a:link, a:visited {
|
||
|
color: white;
|
||
|
text-shadow: none;
|
||
|
}
|
||
|
h1 {
|
||
|
font-size: 40px;
|
||
|
text-shadow: 0px 0px 10px gray;
|
||
|
/* border-bottom: solid 1px white;*/
|
||
|
}
|
||
|
p, ul {
|
||
|
color: white;
|
||
|
padding: 0 4em;
|
||
|
text-align: justify;
|
||
|
line-height: 1.5;
|
||
|
text-shadow: 2px 2px 2px gray;
|
||
|
}
|
||
|
ul { margin-left: 4em; }
|