45 lines
671 B
CSS
45 lines
671 B
CSS
|
|
body {
|
|
background: linear-gradient(to bottom, #ff66cc, #6600ff);
|
|
font-family: 'Verdana', sans-serif;
|
|
color: white;
|
|
text-align: center;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.content {
|
|
border: 8px double white;
|
|
margin: 50px auto;
|
|
padding: 30px;
|
|
width: 80%;
|
|
background-color: rgba(0, 0, 0, 0.7);
|
|
box-shadow: 0 0 20px #fff;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 48px;
|
|
color: yellow;
|
|
text-shadow: 2px 2px 10px red;
|
|
}
|
|
|
|
.ascii-title {
|
|
font-family: monospace;
|
|
background-color: black;
|
|
color: lime;
|
|
padding: 10px;
|
|
margin: 20px 0;
|
|
display: inline-block;
|
|
border: 2px dashed green;
|
|
}
|
|
|
|
a {
|
|
color: cyan;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.gif {
|
|
width: 80px;
|
|
margin: 10px;
|
|
}
|