Skip to content

Commit

Permalink
Create rt-ai-html.css
Browse files Browse the repository at this point in the history
  • Loading branch information
ledangtrung committed Dec 5, 2024
1 parent 6f5888e commit f81336c
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions css/rt-ai-html.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
margin: 0;
padding: 20px;
background-color: var(--background-color);
}

.email-container {
max-width: 600px;
margin: 0 auto;
background-color: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.email-header {
border-bottom: 2px solid var(--primary-color);
padding-bottom: 1rem;
margin-bottom: 1rem;
}

.email-info-box {
background-color: var(--background-color);
padding: 1rem;
border-radius: 4px;
margin-bottom: 1rem;
}

.email-field {
margin-bottom: 0.5rem;
}

.email-label {
font-weight: bold;
color: var(--primary-color);
display: inline-block;
width: 70px;
}

.message-area {
width: 100%;
min-height: 150px;
padding: 0.5rem;
border: 1px solid #ccc;
border-radius: 4px;
resize: vertical;
}

.action-buttons {
display: flex;
gap: 1rem;
margin-top: 2rem;
}

.btn {
padding: 0.5rem 1rem;
border: none;
border-radius: 4px;
cursor: pointer;
display: flex;
align-items: center;
gap: 0.5rem;
background-color: var(--secondary-color);
color: white;
transition: opacity 0.2s;
}

.btn:hover {
opacity: 0.9;
}

0 comments on commit f81336c

Please sign in to comment.