58 lines
No EOL
802 B
CSS
58 lines
No EOL
802 B
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
background: #000;
|
|
color: #fff;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
header {
|
|
text-align: center;
|
|
padding: 40px 20px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2.5rem;
|
|
margin: 0;
|
|
}
|
|
|
|
p {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
nav {
|
|
text-align: center;
|
|
padding: 20px;
|
|
}
|
|
|
|
nav a {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
margin: 0 15px;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
section {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
padding: 30px 20px;
|
|
}
|
|
|
|
.project {
|
|
margin-bottom: 30px;
|
|
border-left: 2px solid #4CAF50;
|
|
padding-left: 15px;
|
|
}
|
|
|
|
a {
|
|
color: #4CAF50;
|
|
text-decoration: none;
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
padding: 20px;
|
|
opacity: 0.6;
|
|
font-size: 0.9rem;
|
|
} |