-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7aaf6f1
commit 8df02c1
Showing
1 changed file
with
0 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
} |