Skip to content

Commit

Permalink
A lil bit of design
Browse files Browse the repository at this point in the history
  • Loading branch information
SolitudePy committed Jun 17, 2024
1 parent d40a819 commit f4d6bf1
Showing 1 changed file with 32 additions and 5 deletions.
37 changes: 32 additions & 5 deletions src/app/static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
height: 90vh;
margin: 0;
}

.container {
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
padding: 50px;
border-radius: 50px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
text-align: center;
max-width: 600px;
width: 100%;
Expand Down Expand Up @@ -50,7 +50,7 @@ button {
font-size: 1em;
color: #fff;
border: none;
border-radius: 5px;
border-radius: 50px;
cursor: pointer;
margin: 5px;
background-color: blue;
Expand All @@ -76,6 +76,33 @@ pre {
overflow-x: auto;
}

/* styles.css */
.error-message-get-details {
color: #fff;
background-color: #e74c3c;
padding: 20px;
border-radius: 40px;
margin: 20px 0;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
font-size: 18px;
text-align: center;
animation: fadeIn 0.5s ease-in-out;
}

.error-message-get-details strong {
font-weight: bold;
}

@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* #markdown-content {
height: 100%;
Expand Down

0 comments on commit f4d6bf1

Please sign in to comment.