forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add some initial styling to the login page. Contributes to cockroachdb#24939. Release note: None
- Loading branch information
Showing
2 changed files
with
61 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
@require "~styl/base/palette.styl" | ||
|
||
.login-page | ||
display flex | ||
align-items center | ||
justify-content center | ||
height 100% | ||
width 100% | ||
position absolute | ||
|
||
.heading | ||
text-transform none | ||
letter-spacing default | ||
|
||
.aside | ||
margin-top 12px | ||
line-height 24px | ||
letter-spacing 1px | ||
color #666 | ||
width 350px | ||
|
||
.input-text | ||
letter-spacing 2px | ||
line-height 17px | ||
padding 12px 24px | ||
vertical-align middle | ||
border 1px solid $button-border-color | ||
border-radius 4px | ||
margin 12px 0 | ||
color $body-color | ||
|
||
.submit-button | ||
text-transform uppercase | ||
font-size 14px | ||
letter-spacing 2px | ||
line-height 17px | ||
padding 12px 24px | ||
vertical-align middle | ||
border 0px none | ||
border-radius 4px | ||
margin 24px 0 | ||
color $background-color | ||
background-color $link-color |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters