site/style.css

90 lines
1.4 KiB
CSS

/*
_ _______________________
| | / / _/ ____/ ____/ ___/
| | / // // / / / __ \__ \
| |/ // // /___/ /_/ /___/ /
|___/___/\____/\____//____/
*/
/* style.css */
/* General styles */
body {
background-color: #00db16;
font-family: Verdana, Helvetica, sans-serif;
margin: 0;
padding: 0;
}
/* Centering content */
.center {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
/* Styling the main content */
.main-content {
width: 75%;
padding: 20px;
background-color: rgb(0, 0, 0);
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
text-align: center; /* Center content horizontally */
margin-top: 0px; /* Adjust the margin from the top as needed */
}
/* Header styles */
h1 {
font-size: 36px;
color: #ffffff;
margin-bottom: 10px;
}
/* Link styles */
a {
color: #00db16;
text-decoration: none;
margin-right: 10px;
}
a:hover {
color: #9f8ffa;
}
/* List styles */
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav ul li {
display: inline-block;
margin-right: 1px;
}
/* Paragraph styles */
p {
color: #ffffff;
font-size: 16px;
line-height: 1.5;
}
/* Horizontal rule styles */
hr {
border: 0;
height: 1px;
background-color: #00db16;
margin-bottom: 20px;
}
/* Footer styles */
footer {
text-align: center;
margin-top: 20px;
color: #666;
font-size: 14px;
}