mirror of
https://github.com/discourse/discourse.git
synced 2025-03-13 23:55:20 +08:00
57 lines
851 B
SCSS
57 lines
851 B
SCSS
// style that apply to the login popup
|
|
|
|
#login-buttons {
|
|
button {
|
|
margin: 0 5px 5px 0;
|
|
min-width: 180px;
|
|
&:lang(zh_CN) {
|
|
min-width: 200px;
|
|
}
|
|
}
|
|
margin-top: 10px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
#login-form {
|
|
a {
|
|
color: dark-light-choose(scale-color($primary, $lightness: 35%), scale-color($secondary, $lightness: 65%));
|
|
}
|
|
}
|
|
|
|
// Create account
|
|
|
|
#new-account-link {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.create-account {
|
|
form {
|
|
margin-bottom: 0;
|
|
}
|
|
table {
|
|
width: 100%;
|
|
}
|
|
tr.input {
|
|
td {
|
|
padding-top: 10px;
|
|
}
|
|
input, label {
|
|
margin-bottom: 0;
|
|
}
|
|
.tip {
|
|
max-width: 340px;
|
|
}
|
|
}
|
|
|
|
tr.instructions {
|
|
label {
|
|
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));
|
|
}
|
|
}
|
|
|
|
.tos-agree {
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
}
|