Files
freeCodeCamp/public/css/styles.less

95 lines
1.5 KiB
Plaintext
Raw Normal View History

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