* VRFS-789 - updated favicon in. still need to update nginx recipe via chef

This commit is contained in:
Seth Call 2013-10-19 13:50:19 -05:00
parent 199619edf1
commit 33ce8f2959
13 changed files with 110 additions and 0 deletions

View File

View File

@ -0,0 +1,67 @@
#logo {
float:left;
width:247px;
}
#profile {
width:auto;
float:right;
height:54px;
}
.avatar_large {
float:left;
padding:2px;
width:54px;
height:54px;
background-color: $ColorScreenPrimary;
-webkit-border-radius:28px;
-moz-border-radius:28px;
border-radius:28px;
}
.avatar_large img {
width:54px;
height:54px;
-webkit-border-radius:26px;
-moz-border-radius:26px;
border-radius:26px;
}
#user {
margin:18px 0px 0px 10px;
font-size:20px;
font-weight:200;
color:#ccc;
float:left;
}
.arrow-down {
float:left;
cursor:pointer;
margin-left:16px;
margin-top:26px;
width: 0;
height: 0;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-top: 8px solid #fff;
}
.userinfo {
cursor:pointer;
}
.userinfo ul {
clear:both;
background: scale-lightness($ColorUIBackground, 10%);
display:none;
}
.userinfo li {
display:block;
margin: 2px;
padding: 2px;
background: scale-lightness($ColorUIBackground, 20%);
}

View File

View File

@ -0,0 +1,43 @@
<!DOCTYPE html>
<html>
<head>
<title><%= full_title(yield(:title)) %></title>
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="css/ie.css" media="screen, projection"/>
<![endif]-->
<link href='http://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600,700' rel='stylesheet' type='text/css'>
<%= stylesheet_link_tag "landing/landing", media: "all" %>
<% if bugsnag? %>
<!-- THIS NEEDS TO BE IN FRONT OF ANY OTHER JAVASCRIPT INCLUDES ACCORDING TO BUGSNAG -->
<script src="//d2wy8f7a9ursnm.cloudfront.net/bugsnag-1.0.9.min.js" data-apikey="<%= Rails.application.config.bugsnag_key %>"></script>
<% end %>
<%= include_gon %>
<%= csrf_meta_tags %>
</head>
<body>
<div id="landing-container">
<%= javascript_include_tag "landing/landing" %>
<div class="logo-message">
<%= link_to root_path do %>
<%= image_tag("header/logo.png", :alt => "JamKazam logo", :size => "247x45") %>
<% end %>
</div>
<br />
<br />
<div id="landing-inner">
<%= yield %>
</div>
</div>
<div id="footer-container">
<%= render "clients/footer" %>
</div>
<%= render "shared/ga" %>
<!-- version info: <%= version %> -->
</body>
</html>

View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 0 B

After

Width:  |  Height:  |  Size: 4.2 KiB

View File