Skip to content

Commit

Permalink
Create styles.css
Browse files Browse the repository at this point in the history
  • Loading branch information
merwin-asm authored Jun 16, 2023
1 parent ffbc9ad commit fc3f5cb
Showing 1 changed file with 175 additions and 0 deletions.
175 changes: 175 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,175 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}

header {
background-color: #333;
padding: 20px;
color: #fff;
display: flex;
justify-content: space-between;
align-items: center;
}

h1 {
margin: 0;
}

.top-button {
color: #fff;
text-decoration: none;
padding: 10px 20px;
border: none;
background-color: #555;
cursor: pointer;
transition: background-color 0.3s;
}

.top-button:hover {
background-color: #777;
}

main {
padding: 20px;
}

#search-container {
display: flex;
margin-bottom: 20px;
}

#search-input {
flex: 1;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}

#search-button {
padding: 10px 20px;
border: none;
background-color: #555;
color: #fff;
border-radius: 5px;
margin-left: 10px;
cursor: pointer;
transition: background-color 0.3s;
}

#search-button:hover {
background-color: #777;
}

#room-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
grid-gap: 20px;
}

.room-box {
border: 1px solid #ccc;
border-radius: 5px;
padding: 20px;
}

.room-box h2 {
margin-top: 0;
}

.room-box p {
margin-bottom: 10px;
}

.room-box button {
padding: 10px 20px;
border: none;
background-color: #555;
color: #fff;
cursor: pointer;
transition: background-color 0.3s;
}

.room-box button:hover {
background-color: #777;
}

#creation-form input,
#creation-form textarea {
width: 100%;
padding: 10px;
margin-bottom: 10px;
}

#creation-form button {
padding: 10px 20px;
border: none;
background-color: #555;
color: #fff;
cursor: pointer;
transition: background-color 0.3s;
}

#creation-form button:hover {
background-color: #777;
}



.popup {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #ffffff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
font-size: 18px;
}


.room-box {
position: relative;
background-color: #f5f5f5;
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
padding: 20px;
margin-bottom: 20px;
transition: transform 0.2s ease-in-out;
}

.room-box::after {
content: "";
position: absolute;
bottom: -10px;
left: 0;
width: 100%;
height: 10px;
background-image: linear-gradient(to top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
border-radius: 10px;
}

.room-box:hover {
transform: translateY(-5px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.join-button {
display: inline-block;
padding: 10px 20px;
background-color: #4CAF50; /* Your preferred shade of green */
color: white;
border-color: #4CAF50;
border-bottom: 2px solid white; /* Lighter shade bottom border */
border-radius: 0;
text-decoration: none;
transition: transform 0.2s ease-in-out;
}

.join-button:hover {
transform: translateY(-3px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

0 comments on commit fc3f5cb

Please sign in to comment.