Spaces:
Sleeping
Sleeping
| body { | |
| font-family: Arial, sans-serif; | |
| background: linear-gradient(to right, #6a11cb, #2575fc); | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| height: 100vh; | |
| margin: 0; | |
| color: #fff; | |
| text-align: center; | |
| } | |
| .container { | |
| background-color: rgba(255, 255, 255, 0.1); | |
| padding: 20px; | |
| border-radius: 10px; | |
| box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); | |
| width: 80%; | |
| max-width: 600px; | |
| } | |
| h1 { | |
| color: #fff; | |
| } | |
| textarea { | |
| width: 100%; | |
| padding: 10px; | |
| margin: 10px 0; | |
| border-radius: 8px; | |
| border: none; | |
| outline: none; | |
| background-color: rgba(255, 255, 255, 0.2); | |
| color: #fff; | |
| } | |
| button { | |
| padding: 10px 20px; | |
| background-color: #28a745; | |
| color: white; | |
| border: none; | |
| border-radius: 8px; | |
| cursor: pointer; | |
| transition: background-color 0.3s ease; | |
| margin-top: 20px; | |
| } | |
| button:hover { | |
| background-color: #218838; | |
| } | |
| #results { | |
| margin-top: 20px; | |
| text-align: left; | |
| color: #fff; | |
| } | |
| .rating { | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| font-size: 2em; | |
| } | |
| .rating .fa-star { | |
| cursor: pointer; | |
| color: #ccc; | |
| transition: color 0.3s; | |
| } | |
| .rating .fa-star:hover, | |
| .rating .fa-star:hover ~ .fa-star { | |
| color: #ffd700; | |
| } | |
| .rating .fa-star.selected { | |
| color: #ffd700; | |
| } | |