Skip to content

Commit

Permalink
Update styles.css
Browse files Browse the repository at this point in the history
  • Loading branch information
CursedPrograms authored Jan 27, 2024
1 parent 7aaf6f1 commit 8df02c1
Showing 1 changed file with 0 additions and 75 deletions.
75 changes: 0 additions & 75 deletions static/styles/styles.css
Original file line number Diff line number Diff line change
@@ -1,76 +1 @@
@import url('https://cursedprograms.github.io/cursedentertainment/styles/main-style.css');

body{
display: flex;
flex-direction: column;
align-items: center;
}

.container {
width: 80%;
}

form {
max-width: 400px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 5px;
}

form label {
display: block;
margin-bottom: 8px;
}

form input {
width: 100%;
padding: 8px;
margin-bottom: 16px;
box-sizing: border-box;
}

ul {
list-style-type: none;
padding: 0;
}

ul li {
color: var(--color-tertiary);
}

p {
text-align: center;
}

#message {
width: calc(100% - 80px);
padding: 8px;
box-sizing: border-box;
}

#messages {
max-width: 800px;
margin: 20px auto;
padding: 20px;
color: #000;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 5px;
max-height: 200px;
overflow-y: auto;
border: 1px solid #ccc;
}

#messages div {
background-color: #168FCC;
padding: 10px;
margin-bottom: 10px;
border-radius: 10px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

#messages div strong {
color: var(--color-tertiary);
}

0 comments on commit 8df02c1

Please sign in to comment.