Skip to content

Commit

Permalink
removed some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
nishadipri committed Apr 29, 2024
1 parent b883925 commit 98a5535
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 28 deletions.
25 changes: 12 additions & 13 deletions packages/client/src/containers/CreateTeamPage/CreateTeam.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.create-team {
max-width: 600px;
margin: 20px auto; /* Added margin for spacing */
margin: 20px auto;
padding: 30px;
border: 2px solid #660065;
border-radius: 10px;
Expand All @@ -11,14 +11,14 @@
h1 {
font-size: 24px;
margin-bottom: 20px;
color: #660065; /* Adjusted heading color */
color: #660065;
}

h2 {
font-size: 20px;
margin-top: 30px;
margin-bottom: 10px;
color: #660065; /* Adjusted heading color */
color: #660065;
}

form {
Expand All @@ -27,13 +27,13 @@ form {

label {
font-weight: bold;
color: #9c27b0; /* Adjusted label color */
color: #9c27b0;
}

input[type='text'],
input[type='email'],
select {
width: calc(100% - 20px); /* Adjusted input width */
width: calc(100% - 20px);
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
Expand Down Expand Up @@ -67,12 +67,12 @@ ul {

li {
margin-bottom: 10px;
border-bottom: 1px solid #ccc; /* Added border bottom */
padding-bottom: 10px; /* Added padding bottom */
border-bottom: 1px solid #ccc;
padding-bottom: 10px;
}

li:last-child {
border-bottom: none; /* Remove border bottom for the last item */
border-bottom: none;
}

li button {
Expand All @@ -95,27 +95,26 @@ select {
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 5px;
color: #be28ec; /* Set text color to purple */
color: #be28ec;
}

/* Additional CSS rules */
input[type='text']::placeholder,
input[type='email']::placeholder,
select::placeholder {
color: #be28ec; /* Set placeholder color to purple */
color: #be28ec;
}

input[type='text']:focus,
input[type='email']:focus,
select:focus {
outline-color: #be28ec; /* Set focus outline color to purple */
outline-color: #be28ec;
}

li {
margin-bottom: 10px;
border-bottom: 1px solid #ccc;
padding-bottom: 10px;
color: #9c27b0; /* Set text color to purple */
color: #9c27b0;
}

li:last-child {
Expand Down
30 changes: 15 additions & 15 deletions packages/client/src/containers/RetroPage/RetroPage.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ body {
to right,
transparent,
rgb(228, 209, 255),
/* Lighter shade of purple */ rgb(195, 158, 240),
/* Medium shade of purple */ rgb(136, 77, 167) /* Darker shade of purple */
rgb(195, 158, 240),
rgb(136, 77, 167)
);
}

Expand All @@ -25,23 +25,23 @@ body {
}

.input-button {
background-color: rgb(104, 45, 124); /* Medium shade of purple */
background-color: rgb(104, 45, 124);
margin-top: 30px;
}

.submit-button {
display: flex;
margin-left: 45%;
margin-top: 20px;
background-color: rgb(136, 77, 167); /* Darker shade of purple */
background-color: rgb(136, 77, 167);
padding: 25px 69px;
}

.finalize-button {
display: flex;
margin-top: 30px;
margin-left: 48%;
background-color: rgb(104, 45, 124); /* Darker shade of purple */
background-color: rgb(104, 45, 124);
color: white;
border: none;
padding: 9px 30px;
Expand All @@ -52,7 +52,7 @@ body {

.retroContainer {
display: flex;
background-color: #e6e2ff; /* Lighter shade of purple */
background-color: #e6e2ff;
border-radius: 5px;
margin-top: 50px;
padding-left: 2%;
Expand All @@ -77,7 +77,7 @@ body {

.newRetroButton,
.joinButton {
background-color: rgb(104, 45, 124); /* Lighter shade of purple */
background-color: rgb(104, 45, 124);
color: rgb(240, 233, 233);
border: none;
border-radius: 5px;
Expand All @@ -86,7 +86,7 @@ body {

.newRetroButton:hover,
.joinButton:hover {
background-color: #e5b3ff; /* Medium shade of purple */
background-color: #e5b3ff;
}

.retroCodeButton {
Expand Down Expand Up @@ -141,22 +141,22 @@ body {
}

.box1 {
background-color: #f3e5ff; /* Lighter shade of purple */
background-color: #f3e5ff;
border-radius: 10px;
}

.box2 {
background-color: #dcc6ff; /* Medium shade of purple */
background-color: #dcc6ff;
border-radius: 10px;
}

.box3 {
background-color: #c5aaff; /* Darker shade of purple */
background-color: #c5aaff;
border-radius: 10px;
}

.box4 {
background-color: #efbbff; /* Placeholder color */
background-color: #efbbff;
border-radius: 10px;
}

Expand All @@ -167,7 +167,7 @@ body {
.comment {
margin-right: 10px;
margin-top: 5px;
color: #9c27b0; /* Set text color to purple */
color: #9c27b0;
margin-bottom: 5px;
}

Expand Down Expand Up @@ -212,13 +212,13 @@ body {

.completeButton {
padding: 10px 20px;
background-color: #9c27b0; /* Set button color to purple */
background-color: #9c27b0;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}

.completeButton:hover {
background-color: #7b1fa2; /* Adjusted hover color */
background-color: #7b1fa2;
}

0 comments on commit 98a5535

Please sign in to comment.