mirror of
https://github.com/davidguva/OpenVidReview.git
synced 2026-01-13 23:49:30 -06:00
158 lines
2.7 KiB
CSS
158 lines
2.7 KiB
CSS
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@100..900&display=swap');
|
|
|
|
body {
|
|
font-family: 'Roboto', sans-serif;
|
|
background-color: #747474;
|
|
color: #333;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
.container {
|
|
background-color: #fff;
|
|
padding: 20px;
|
|
border-radius: 10px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
width: 90%;
|
|
max-width: 800px;
|
|
}
|
|
|
|
#login {
|
|
color: #7253ff;
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
color: #7253ff;
|
|
font-size: 24px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.reviewText {
|
|
font-size: 12px;
|
|
}
|
|
|
|
#addbox {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
input[type="password"], input[type="file"], button {
|
|
margin-bottom: 10px;
|
|
padding: 10px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 5px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
input[type="text"], input[type="file"], button {
|
|
margin-bottom: 10px;
|
|
padding: 10px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 5px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
input[type="text"]:focus, input[type="file"]:focus {
|
|
border-color: #7253ff;
|
|
outline: none;
|
|
}
|
|
|
|
button {
|
|
background-color: #7253ff;
|
|
color: #fff;
|
|
border: none;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #4834a0;
|
|
}
|
|
|
|
#progressBar {
|
|
width: 100%;
|
|
height: 20px;
|
|
margin-top: 10px;
|
|
display: none;
|
|
}
|
|
|
|
#uploadStatus {
|
|
margin-top: 10px;
|
|
font-size: 14px;
|
|
color: #888;
|
|
}
|
|
|
|
#reviews-list {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.review-item {
|
|
display: flex;
|
|
align-items: center;
|
|
background-color: #f9f9f9;
|
|
padding: 10px;
|
|
margin-bottom: 10px;
|
|
border-radius: 5px;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.review-item > * {
|
|
margin: 0 10px;
|
|
}
|
|
|
|
.review-item input[type="text"] {
|
|
flex: 1;
|
|
padding: 5px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 5px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.review-item button {
|
|
padding: 5px 10px;
|
|
border-radius: 5px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.review-item button.delete-review {
|
|
background-color: #f44336;
|
|
}
|
|
|
|
.review-item button.update-review {
|
|
background-color: #357a37;
|
|
}
|
|
|
|
#logout {
|
|
margin-top: 20px;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
#logout button {
|
|
width: 23%;
|
|
padding: 10px;
|
|
margin: 5px;
|
|
border: none;
|
|
border-radius: 5px;
|
|
background-color: #7253ff;
|
|
color: #fff;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#logout button:hover {
|
|
background-color: #0056b3;
|
|
}
|