site/style.css

68 lines
1.0 KiB
CSS
Raw Normal View History

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 {
text-align: center;
}
/* Styling the main content */
.main-content {
width: 75%;
margin: 0 auto;
padding: 20px;
background-color: white;
}
/* Header styles */
h1 {
font-size: 36px;
color: #333;
margin-bottom: 10px;
}
/* Link styles */
a {
color: #333;
text-decoration: none;
margin-right: 10px;
}
a:hover {
text-decoration: underline;
}
/* 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;
}