Skip to content
Snippets Groups Projects
register-hospital.component.scss 1.86 KiB
Newer Older
@import '../../sass/styles';

.register-page {
  font-family: $font-default;
  color: $text-dark;

  h2 {
    font-family: $font-header;
    font-weight: bolder;
    font-size: 28px;
    margin: 5px 10px 0px 0px;
    text-align: center;
  }
}

input {
  color: $text-dark;
  font-size: 20px;
  border-color: #9d9d9d;
  border-radius: 4px;
  border-style: solid;
}

.register-card {

  padding: 10px 20px;
  background-color: $white;
  border: 2px solid $text-dark;
  border-radius: 10px;
}

.input-text {
  font-size: 20px;
  display: block;
  margin-top:10px;
}

.input-block {
  width: 45%;
  display: inline-block;
  margin-left: 3%;
Your Name's avatar
Your Name committed
  
  @media only screen and (max-width: $break-small) {
    display: block;
    width: 100%;
  }
}

.submit-button {
  color: $text-light;
  background-color: $bg-secondary;
  text-align: center;
  font-size: 20px;
  padding: 5px 20px;

  margin-top: 20px;
  display: inline-block;

  border-style: none;
  border-radius: 4px;
  cursor: pointer;

  &:hover {
    text-decoration: none;
    background: $dark-purple;
  }
Your Name's avatar
Your Name committed
  @media only screen and (max-width: $break-small) {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
  }
}

.file-input {
  color: $text-light;
  background-color: $bg-secondary;
  text-align: center;
  font-size: 20px;
  padding: 5px 20px;
  width: 30%;
  
  margin-left: 20px;
  margin-right: 36%;
  display: inline-block;

  border-style: none;
  border-radius: 4px;
  cursor: pointer;

  &:hover {
    text-decoration: none;
    background: $dark-purple;
  }
Your Name's avatar
Your Name committed
  @media only screen and (max-width: $break-small) {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
  }
}

.selected-image {

  font-size: 20px;
  display: inline-block;
  margin-top: 20px;
  margin-left: 20px;

Your Name's avatar
Your Name committed
  @media only screen and (max-width: $break-small) {
    width: 94%;
    margin-left: 3%;
    margin-right: 3%;
    margin-bottom: 10px;
  }