Styling improvements
This commit is contained in:
parent
ce241b1674
commit
f70a676456
|
@ -2,4 +2,12 @@
|
||||||
--inset-bg-color: #eee;
|
--inset-bg-color: #eee;
|
||||||
|
|
||||||
--border-radius: .5em;
|
--border-radius: .5em;
|
||||||
|
|
||||||
|
--button-bg-color: #333;
|
||||||
|
--button-text-color: #fff;
|
||||||
|
--button-hover-bg-color: #555;
|
||||||
|
--button-hover-text-color: #fff;
|
||||||
|
|
||||||
|
--notice-bg-color: #5cb85c;
|
||||||
|
--notice-text-color: #fff;
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,6 +13,13 @@ main {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
aside.flash {
|
||||||
|
background-color: var(--notice-bg-color);
|
||||||
|
color: var(--notice-text-color);
|
||||||
|
padding: 1em;
|
||||||
|
border-radius: var(--border-radius);
|
||||||
|
}
|
||||||
|
|
||||||
section.inset {
|
section.inset {
|
||||||
width: 70%;
|
width: 70%;
|
||||||
max-width: 60em;
|
max-width: 60em;
|
||||||
|
@ -25,3 +32,25 @@ section.inset {
|
||||||
h1, h2 {
|
h1, h2 {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
header nav {
|
||||||
|
ul {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
li {
|
||||||
|
list-style-type: none;
|
||||||
|
padding: 0 .5em;
|
||||||
|
}
|
||||||
|
a:link, a:visited {
|
||||||
|
background-color: var(--button-bg-color);
|
||||||
|
color: var(--button-text-color);
|
||||||
|
border-radius: var(--border-radius);
|
||||||
|
text-decoration: none;
|
||||||
|
padding: .5em;
|
||||||
|
}
|
||||||
|
a:hover {
|
||||||
|
background-color: var(--button-hover-bg-color);
|
||||||
|
color: var(--button-hover-text-color);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -15,7 +15,6 @@
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
<h1><%= link_to t("site_name"), root_path %></h1>
|
<h1><%= link_to t("site_name"), root_path %></h1>
|
||||||
</header>
|
|
||||||
<nav>
|
<nav>
|
||||||
<ul>
|
<ul>
|
||||||
<% if logged_in? %>
|
<% if logged_in? %>
|
||||||
|
@ -24,6 +23,9 @@
|
||||||
<li><%= link_to t("log_in"), login_path %></li>
|
<li><%= link_to t("log_in"), login_path %></li>
|
||||||
<li><%= link_to t("sign_up"), new_user_path %></li>
|
<li><%= link_to t("sign_up"), new_user_path %></li>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
<%= render partial: "shared/flash_messages" %>
|
<%= render partial: "shared/flash_messages" %>
|
||||||
<main>
|
<main>
|
||||||
<%= yield %>
|
<%= yield %>
|
||||||
|
|
|
@ -18,7 +18,7 @@ en:
|
||||||
sessions:
|
sessions:
|
||||||
create:
|
create:
|
||||||
success: "Hello, %{name}!"
|
success: "Hello, %{name}!"
|
||||||
error: "Could not sign in. Please check your email and password."
|
error: "Could not sign in. Please check your username and password."
|
||||||
new:
|
new:
|
||||||
log_in: Log in
|
log_in: Log in
|
||||||
destroy:
|
destroy:
|
||||||
|
|
Loading…
Reference in New Issue