cb-gen-ai-apps / style.css
deepakchawla-cb's picture
Update style.css
8fe18f6
raw
history blame
No virus
870 Bytes
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f2f2f2;
}
header {
background-color: #007BFF;
color: #fff;
text-align: center;
padding: 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
h1 {
margin: 0;
}
.logo img {
max-height: 50px;
}
main {
max-width: 800px;
margin: 20px auto;
background-color: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
table {
width: 100%;
border-collapse: collapse;
}
table th, table td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
table th {
background-color: #007BFF;
color: #fff;
}
table tr:nth-child(even) {
background-color: #f2f2f2;
}
a {
text-decoration: none;
color: #007BFF;
}
a:hover {
text-decoration: underline;
}