1234567891011121314151617181920212223242526272829 |
- //
- // Sign in page
- // --------------------------------------------------
- .signin-help {
- li {
- h5 {
- margin-bottom: @line-height-computed / 4;
- font-size: large;
- }
- a {
- &:link, &:visited {
- color: @state-default;
- }
- &:hover {
- color: @state-hover;
- text-decoration: none;
- }
- &:active {
- color: @state-clicked;
- }
- }
- }
- }
|