fixed cursor

This commit is contained in:
Senad Uka
2016-02-20 13:14:21 +01:00
parent 91b72481da
commit 7af44a6245
2 changed files with 9 additions and 5 deletions

View File

@@ -1,4 +1,3 @@
/* /*
* This is a manifest file that'll be compiled into application.css, which will include all the files * This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below. * listed below.
@@ -13,13 +12,18 @@
* *
*= require active_scaffold *= require active_scaffold
*/ */
@import "bootstrap"; @import "bootstrap";
#logo { #logo {
margin: 20px; margin: 20px;
color: green; color: green;
} }
.server-thumbnail { .server-thumbnail {
margin: 15px; margin: 15px;
cursor: pointer;
}
.server-name {
margin-top: 5px;
text-transform: uppercase;
font-size: 16px !important;
text-align: center;
} }

View File

@@ -15,7 +15,7 @@
<div class="thumbnail"> <div class="thumbnail">
<%= image_tag('ubuntu.png', size: '128', class:"img-responsive" ) %> <%= image_tag('ubuntu.png', size: '128', class:"img-responsive" ) %>
<div class="caption text-md-center" > <div class="caption text-md-center" >
<h3><%= server.name %></h3> <h3 class="server-name"><%= server.name %></h3>
</div> </div>
</div> </div>
</div> </div>