Style tweaks

This commit is contained in:
Ben Visness 2021-08-28 08:41:09 -05:00
parent 5fa0a3a7c2
commit f7c754e53b
5 changed files with 13 additions and 19 deletions

View File

@ -1173,7 +1173,7 @@ img, video {
.br1 {
border-radius: 0.125rem; }
.br2, .hmn-code {
.br2, .hmn-code, .notice {
border-radius: 0.25rem; }
.br3 {
@ -4711,7 +4711,7 @@ code, .code {
button,
.button,
input[type=button],
input[type=submit] {
input[type=submit], .notice {
padding-top: 0.5rem;
padding-bottom: 0.5rem; }
@ -4755,7 +4755,7 @@ input[type=submit] {
button,
.button,
input[type=button],
input[type=submit] {
input[type=submit], .notice {
padding-left: 1rem;
padding-right: 1rem; }
@ -7213,7 +7213,7 @@ body {
min-height: 100vh;
box-sizing: border-box;
font-size: 0.875rem;
line-height: 1.2em;
line-height: 1.5;
font-weight: 400; }
a {

View File

@ -27,7 +27,7 @@ body {
min-height: 100vh;
box-sizing: border-box;
font-size: px2rem(14px);
line-height: 1.2em;
line-height: 1.5;
font-weight: 400;
}

View File

@ -1,5 +1,7 @@
.notice {
@include usevar(color, notice-text-color);
@extend .ph3, .pv2;
@extend .br2;
a {
@include usevar(color, notice-text-color);

View File

@ -10,18 +10,10 @@
<a class="register" id="register-link" href="{{ .Header.RegisterUrl }}">Register</a>
<a class="login" id="login-link" href="{{ .LoginPageUrl }}">Log in</a>
<div id="login-popup">
<form action="{{ .Header.LoginActionUrl }}" method="post">
<table>
<tr>
<th><label>Username:</label></th>
<td><input type="text" name="username" class="textbox username" value="" /></td>
</tr>
<tr>
<th><label>Password:</label></th>
<td><input type="password" name="password" class="textbox password" value="" /></td>
</tr>
</table>
<a class="db" style="padding: 0.5rem 0;" href="{{ .Header.ForgotPasswordUrl }}">Forgot your password?</a>
<form action="{{ .Header.LoginActionUrl }}" method="post" class="ma0">
<input type="text" name="username" class="w-100" value="" placeholder="Username" />
<input type="password" name="password" class="w-100 mt1" value="" placeholder="Password" />
<a class="db" style="padding: 0.5rem 0;" href="{{ .Header.ForgotPasswordUrl }}">Forgot your password?</a>
<input type="hidden" name="redirect" value="{{ $.CurrentUrl }}">
<div class="pt2">
<input type="submit" value="Log In" />

View File

@ -1,6 +1,6 @@
<div class="mb1">
<div>
{{ range . }}
<div class="content-block notice notice-{{ .Class }}">
<div class="notice notice-{{ .Class }} mb2">
{{ .Content }}
</div>
{{ end }}