Created
January 28, 2015 16:12
-
-
Save karstenrowe/5250bb378fbeecafdbe1 to your computer and use it in GitHub Desktop.
Leaddyno LESS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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