freeCodeCamp/public/css/styles.less

93 lines
1.3 KiB
Plaintext
Raw Normal View History

@import (less) "lib/animate.css";
@import (less) "lib/font-awesome.min.css";
2014-01-23 22:22:54 +00:00
@import "lib/bootstrap/bootstrap";
2014-01-29 04:02:20 +00:00
@import "themes/default";
2014-01-23 22:37:47 +00:00
// Scaffolding
2014-02-03 14:16:20 +00:00
// ---- ---------------------
2014-01-23 23:17:24 +00:00
2014-01-24 07:14:40 +00:00
html, body {
height: 100%;
}
2013-12-04 03:56:18 +00:00
body {
2013-12-18 07:57:24 +00:00
padding-top: 70px;
}
2013-12-12 06:35:18 +00:00
2014-01-24 07:14:40 +00:00
#wrap {
min-height: 100%;
height: auto !important;
height: 100%;
/* Negative indent footer by its height */
2014-02-01 06:45:03 +00:00
margin: 0 auto -110px;
/* Pad bottom by footer height + (optional) extra spacing */
2014-02-01 06:45:03 +00:00
padding: 0 0 120px;
2014-01-24 07:14:40 +00:00
}
#footer {
2014-02-01 06:45:03 +00:00
height: 110px;
2014-02-01 07:07:30 +00:00
padding-top: 15px;
2014-01-24 07:14:40 +00:00
}
2014-01-23 22:37:47 +00:00
// Navbar
// -------------------------
2014-01-23 23:17:24 +00:00
2014-01-23 22:37:47 +00:00
@navbar-height: 45px;
.navbar-nav .profile-image {
width: 30px;
height: 30px;
margin: -15px 15px -15px 0;
2014-01-23 23:17:24 +00:00
}
// Social Buttons
// -------------------------
2014-01-23 23:17:24 +00:00
2014-01-23 23:30:51 +00:00
.btn-facebook {
color: #fff;
background: #3b5998;
border: 1px solid rgba(0, 0, 0, 0.07);
2014-01-23 23:42:24 +00:00
&:hover {
color: #fff;
}
2014-01-23 23:30:51 +00:00
}
.btn-twitter {
color: #fff;
background: #00aced;
border: 1px solid rgba(0, 0, 0, 0.07);
2014-01-23 23:42:24 +00:00
&:hover {
color: #fff;
}
2014-01-23 23:30:51 +00:00
}
.btn-google-plus {
color: #fff;
background: #dd4b39;
border: 1px solid rgba(0, 0, 0, 0.07);
2014-01-23 23:42:24 +00:00
&:hover {
color: #fff;
}
2014-01-23 23:30:51 +00:00
}
.btn-github {
color: #fff;
background: #333;
border: 1px solid rgba(0, 0, 0, 0.07);
2014-01-23 23:42:24 +00:00
&:hover {
color: #fff;
}
2014-01-23 23:30:51 +00:00
}
2014-01-23 23:17:24 +00:00
// Extra space between font-awesome icons and text
[class^="fa-"],
[class*="fa-"] {
margin-right: 5px;
}
2014-01-24 07:14:40 +00:00