login.css 617 字节
Newer Older
A
Asher 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
.login-form {
  align-items: center;
  color: rgba(0, 0, 0, 0.37);
  display: flex;
  flex: 1;
  flex-direction: column;
  font-weight: 700;
  justify-content: center;
  text-transform: uppercase;
}

.login-form > .field {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.login-form > .field-error {
  margin-top: 10px;
}

.login-form > .field > .input {
  border: 1px solid #b6b6b6;
  box-sizing: border-box;
  padding: 10px;
  flex: 1;
}

.login-form > .field > .submit {
  background-color: transparent;
  border: 1px solid #b6b6b6;
  box-sizing: border-box;
  margin-left: -1px;
  padding: 10px 20px;
}