Skip to content

Commit

Permalink
Merge pull request #26 from Misoto22/14-link-existing-page
Browse files Browse the repository at this point in the history
Link each components and different pages
  • Loading branch information
Elefantat committed May 12, 2024
2 parents 3171bcc + 5141413 commit b9ad1ec
Show file tree
Hide file tree
Showing 33 changed files with 537 additions and 305 deletions.
Binary file removed app/image/avatar1.png
Binary file not shown.
Binary file removed app/image/avatar2.png
Binary file not shown.
Binary file removed app/image/avatar3.png
Binary file not shown.
Binary file removed app/image/avatar4.png
Binary file not shown.
4 changes: 2 additions & 2 deletions app/static/css/forum_reply.css
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,11 @@
cursor: pointer;
}

.nested-reply-form textarea{
.nested-reply-form textarea {
width: 60%;
height: 50px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
resize: vertical;
}
}
100 changes: 0 additions & 100 deletions app/static/css/forum_topic.css

This file was deleted.

86 changes: 0 additions & 86 deletions app/static/css/profile.css
Original file line number Diff line number Diff line change
@@ -1,86 +0,0 @@
body {
font-family: Arial, sans-serif;
background: #f4f4f4;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}

.profile-container {
background: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
display: flex;
width: 80%;
}

.profile-content {
flex: 1; /* Takes up the remaining space /
margin-right: 20px; / Ensures space between the content and the avatar */
}

.avatar-container {
display: flex;
align-items: center;
justify-content: center;
width: 200px; /* Fixed width for the avatar image */
}

.avatar {
width: 70%;
height: auto;
border-radius: 50%; /* Makes the avatar circular */
}

h1 {
text-align: center;
}

.form-row {
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}

label {
flex: 1;
margin-right: 20px;
}

label:last-child {
margin-right: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
width: 100%;
padding: 8px;
margin-top: 8px;
border: 1px solid #ccc;
border-radius: 4px;
}

select[multiple] {
height: auto; /* Adjust height based on the number of options */
padding: 5px;
}

button {
width: 100%;
padding: 10px;
border: none;
background-color: #ff6347;
color: white;
border-radius: 4px;
cursor: pointer;
}

button:hover {
background-color: #e5533b;
}
Loading

0 comments on commit b9ad1ec

Please sign in to comment.