Files
darkshy.bronyfurry.com/css/style.css
2025-01-16 21:09:16 +03:00

142 lines
1.9 KiB
CSS

body {
background-color: #000;
color: #0f0;
font-family: "Courier New", Courier, monospace;
margin: 0;
padding: 0;
}
.header {
text-align: center;
padding: 10px;
}
.terminal {
max-width: 800px;
margin: 20px auto;
border: 2px solid #0f0;
border-radius: 5px;
background-color: #111;
box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}
.terminal-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
background-color: #222;
border-bottom: 2px solid #0f0;
}
.circle {
display: inline-block;
width: 12px;
height: 12px;
border-radius: 50%;
margin-right: 5px;
}
.red {
background-color: #ff4d4d;
}
.yellow {
background-color: #ffcc00;
}
.green {
background-color: #4dff4d;
}
.terminal-title {
color: #0f0;
font-weight: bold;
}
.terminal-body {
padding: 15px;
text-align: center;
}
#blink {
animation: blink 1s step-start infinite;
}
@keyframes blink {
50% {
opacity: 0;
}
}
h1.dark {
margin: 0;
padding: 0;
}
main {
max-width: 800px;
margin: 20px auto;
padding: 10px;
background-color: #111;
border: 2px solid #0f0;
border-radius: 5px;
}
section {
margin-bottom: 20px;
}
.image-section {
text-align: center;
}
.centered-image {
max-width: 100%;
height: auto;
border: 2px solid #0f0;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}
.project-links {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
}
.btn {
display: inline-block;
padding: 10px 15px;
color: #0f0;
text-decoration: none;
border: 1px solid #0f0;
border-radius: 3px;
background-color: #222;
transition: background-color 0.3s;
}
.btn:hover {
background-color: #0f0;
color: #000;
}
footer {
max-width: 800px;
margin: 20px auto;
text-align: center;
padding: 10px;
background-color: #111;
border: 2px solid #0f0;
border-radius: 5px;
}
footer p {
margin: 5px 0;
}
footer img {
margin-top: 10px;
}