site/style.css

89 lines
1.4 KiB
CSS
Raw Normal View History

2024-04-26 11:36:02 +00:00
/*
_ _______________________
| | / / _/ ____/ ____/ ___/
| | / // // / / / __ \__ \
| |/ // // /___/ /_/ /___/ /
|___/___/\____/\____//____/
*/
2024-04-29 15:14:57 +00:00
/* style.css */
2024-04-26 11:36:02 +00:00
/* General styles */
body {
background-color: #00db16;
font-family: Verdana, Helvetica, sans-serif;
margin: 0;
padding: 0;
}
/* Centering content */
.center {
2024-04-29 15:14:57 +00:00
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
2024-04-26 11:36:02 +00:00
}
/* Styling the main content */
.main-content {
width: 75%;
padding: 20px;
background-color: white;
2024-04-29 15:14:57 +00:00
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 */
2024-04-26 11:36:02 +00:00
}
/* Header styles */
h1 {
font-size: 36px;
color: #333;
margin-bottom: 10px;
}
/* Link styles */
a {
2024-04-29 15:14:57 +00:00
color: #00db16;
2024-04-26 11:36:02 +00:00
text-decoration: none;
margin-right: 10px;
}
a:hover {
2024-04-29 15:14:57 +00:00
text-decoration: underline;
}
/* List styles */
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav ul li {
display: inline-block;
margin-right: 10px;
2024-04-26 11:36:02 +00:00
}
/* Paragraph styles */
p {
font-size: 16px;
line-height: 1.5;
}
/* Horizontal rule styles */
hr {
border: 0;
height: 1px;
background-color: #333;
margin-bottom: 20px;
}
/* Footer styles */
footer {
text-align: center;
margin-top: 20px;
color: #666;
font-size: 14px;
2024-04-29 15:14:57 +00:00
}