43 lines
870 B
CSS
43 lines
870 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
min-height: 100vh;
|
|
background: #1a1a1a;
|
|
font-family: monospace;
|
|
color: #e0e0e0;
|
|
padding: 20px;
|
|
line-height: 1.6;
|
|
text-shadow: 0 0 5px rgba(224, 224, 224, 0.3);
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
color: #00a4dc;
|
|
text-shadow: 0 0 8px rgba(0, 164, 220, 0.4);
|
|
}
|
|
|
|
h1 { font-size: 28px; border-bottom: 1px solid #333; padding-bottom: 10px; margin: 20px 0 10px; }
|
|
h2 { font-size: 22px; }
|
|
h3 { font-size: 18px; }
|
|
|
|
p, ul, li { margin: 10px 0; }
|
|
ul { margin-left: 20px; }
|
|
li { margin: 5px 0; }
|
|
|
|
a {
|
|
color: #888;
|
|
text-decoration: none;
|
|
transition: all 0.2s ease;
|
|
text-shadow: 0 0 5px rgba(224, 224, 224, 0.3);
|
|
}
|
|
|
|
a:hover {
|
|
color: #e0e0e0;
|
|
text-shadow: 0 0 10px rgba(224, 224, 224, 0.5);
|
|
}
|
|
|
|
hr { border: none; border-top: 1px solid #333; margin: 20px 0; }
|