Untitled

 avatar
unknown
plain_text
a month ago
1.5 kB
2
Indexable
/* General body styles */
body {
    background-color: #e9f3f2;
    font-family: Arial, sans-serif;
}

/* Header */
.site-header {
    background-color: #5f9ea0;
    padding: 20px;
    text-align: center;
}

.site-header nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.site-header a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

/* Search Bar */
.search-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.search-container input[type='text'] {
    padding: 10px;
    width: 300px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.search-container button {
    background-color: #c4550a;
    color: white;
    border: none;
    padding: 10px 15px;
    margin-left: 10px;
    cursor: pointer;
}

/* Grid Layout for Posts */
.posts-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px;
}

.post-item {
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.post-item img {
    width: 100%;
    border-radius: 5px;
}

.post-item a {
    color: #007b7f;
    text-decoration: none;
    font-weight: bold;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 20px;
    background-color: white;
}

.site-footer a {
    color: #c4550a;
    font-weight: bold;
}
Editor is loading...
Leave a Comment