jam-cloud/web/app/views/layouts/jtx.html.erb

36 lines
687 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<title><%= full_title(yield(:title)) %></title>
<style>
body {
color: #999;
}
a {
color: #fc0;
cursor: pointer;
text-decoration: none;
}
h1 {
font-weight: 200;
font-size: 32px;
margin-bottom: 10px;
color: #fff;
}
.term {
font-weight: bold;
text-decoration: underline;
}
h2 {
font-weight: 300;
font-size: 20px;
color: #fff;
}
</style>
<%= csrf_meta_tags %>
</head>
<body bgcolor='#262626' style="font-family:Arial, Helvetica, sans-serif; a.color=#fc0">
<%= yield %>
</body>
</html>