mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:47:31 +08:00
24 lines
456 B
SCSS
24 lines
456 B
SCSS
// Styles used before the user is logged into discourse. For example, activating their
|
|
// account or changing their email.
|
|
|
|
#simple-container {
|
|
border-radius: 10px;
|
|
background-color: $secondary;
|
|
padding: 20px;
|
|
width: 550px;
|
|
margin: 0 auto;
|
|
|
|
.account-created {
|
|
.ac-message {
|
|
font-size: $font-up-1;
|
|
line-height: $line-height-large;
|
|
}
|
|
|
|
.activation-controls {
|
|
button {
|
|
margin-right: 0.5em;
|
|
}
|
|
}
|
|
}
|
|
}
|