Skip to content

Instantly share code, notes, and snippets.

@karstenrowe
Created January 28, 2015 16:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karstenrowe/5250bb378fbeecafdbe1 to your computer and use it in GitHub Desktop.
Save karstenrowe/5250bb378fbeecafdbe1 to your computer and use it in GitHub Desktop.
Leaddyno LESS
.affiliate-dashboard {
// Typography
h1 {
color: #5d5a56;
}
p {
color: #7d7975;
}
a {
color: #1b9fdf;
&:hover {
text-decoration: underline;
color: #105f85;
}
}
// Header
#dashboard-top-nav {
background: none;
}
// Logo
h1 {
img {
width: 260px;
margin: 20px 0;
}
}
// Tables
.dashboard-table {
.dashboard-table-head {
color: #5d5a56;
box-shadow: none;
}
}
// Forms
input[type="text"],
input[type="password"] {
background: rgba(255,255,255,0.9);
border: 2px solid #a3a1a0;
border-radius: 3px;
padding: 4px 10px;
&:focus {
outline: none;
background: #fff;
border: 2px solid #7d7975;
box-shadow: inset 0 1px 1px rgba(0,0,0, 0.08), 0 0 0 2px #fdce9a;
}
}
.btn-primary {
text-shadow: none;
font-weight: bold;
color: white;
background: #1b9fdf;
border: none;
border-radius: 2px;
padding: 8px 10px;
&:hover {
color: #fff;
text-decoration: none;
background: #105f85;
}
}
// Footer
.powered-by-row {
display: none;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment