Gitlab@Informatics

Skip to content
Snippets Groups Projects
Select Git revision
  • b1da3496828ff9fa2967813b83baabad93534c7b
  • main default protected
2 results

editprofile.css

Blame
  • editprofile.css 758 B
    .profile-container {
        max-width: 600px;
        margin: 30px auto;
        padding: 20px;
        background: white;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
      }
      
      h2 {
        text-align: center;
        color: #0073e6;
        margin-bottom: 20px;
      }
      
      .form-group {
        margin-bottom: 15px;
      }
      
      .form-group label {
        display: block;
        font-weight: bold;
      }
      
      .form-group input {
        width: 100%;
        padding: 10px;
        margin-top: 5px;
        border-radius: 5px;
        border: 1px solid #ccc;
      }
      
      button {
        display: block;
        width: 100%;
        padding: 10px;
        background: #007bff;
        color: white;
        border-radius: 5px;
        cursor: pointer;
        transition: 0.3s;
      }
      
      button:hover {
        background: #0056b3;
      }