Untitled

 avatar
unknown
css
5 months ago
1.5 kB
3
Indexable
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.header {
    background-color: #ff3d00;
    color: white;
}

.top-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
}

.logo {
    font-size: 24px;
    text-decoration: none;
    color: white;
    z-index: 100;
    font-weight: bold;
    margin-right: auto;
}

.top-nav {
    display: flex;
    gap: 15px;
}

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

.top-nav a:hover {
    text-decoration: underline;
}

.menu-icon {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
}

.menu-icon span {
    width: 20px;
    height: 2px;
    background: snow;
}

.bottom-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f7f7f7;
    padding: 10px 20px;
    color: black;
}

.bottom-nav {
    display: flex;
    gap: 15px;
}

.bottom-nav a {
    color: black;
    text-decoration: none;
    font-size: 14px;
}
.link {
    display: inline-block;
    height: 44px;
    margin-right: 4px;
    font-size: 16px;
}
.link:hover {
    color: #000;
    text-decoration: none;
    background-color: #dfddd9;
}

.search-icon {
    margin-left: 15px;
    font-size: 18px;
    cursor: pointer;
}
Editor is loading...
Leave a Comment