/* ===========================
   Old GitHub Style CSS
   =========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f6f8fa;
    color: #24292e;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

/* Links */

a {
    color: #0366d6;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */

header {
    background: linear-gradient(#fafbfc, #e1e4e8);
    border-bottom: 1px solid #d1d5da;
    padding: 12px 20px;
}

header h1 {
    font-size: 22px;
    color: #24292e;
}

/* Navigation */

nav {
    margin-top: 10px;
}

nav a {
    color: #586069;
    font-weight: bold;
    margin-right: 18px;
}

nav a:hover {
    color: #0366d6;
}

/* Main Container */

.container {
    width: 980px;
    margin: 25px auto;
}

/* Boxes */

.box {
    background: white;
    border: 1px solid #d1d5da;
    border-radius: 3px;
    padding: 16px;
    margin-bottom: 20px;
}

/* Buttons */

button,
.btn {
    display: inline-block;
    background: linear-gradient(#fafbfc, #eff3f6);
    border: 1px solid #d1d5da;
    border-radius: 3px;
    color: #24292e;
    padding: 7px 14px;
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
}

button:hover,
.btn:hover {
    background: linear-gradient(#f3f4f6, #e6ebf1);
}

button:active,
.btn:active {
    background: #dfe2e5;
}

/* Green Button */

.btn-primary {
    background: linear-gradient(#34d058, #28a745);
    border-color: #22863a;
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(#2fcb53, #269f42);
}

/* Inputs */

input,
textarea,
select {
    width: 100%;
    padding: 8px;
    border: 1px solid #d1d5da;
    border-radius: 3px;
    background: white;
    color: #24292e;
    margin-top: 5px;
    margin-bottom: 15px;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #2188ff;
    box-shadow: 0 0 3px rgba(3,102,214,.3);
}

/* Tables */

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background: #f6f8fa;
    text-align: left;
    padding: 10px;
    border: 1px solid #dfe2e5;
}

td {
    padding: 10px;
    border: 1px solid #dfe2e5;
}

/* Code */

code {
    background: #f6f8fa;
    border: 1px solid #dfe2e5;
    border-radius: 3px;
    padding: 2px 4px;
    font-family: Consolas, monospace;
}

pre {
    background: #f6f8fa;
    border: 1px solid #dfe2e5;
    padding: 16px;
    overflow-x: auto;
    border-radius: 3px;
}

/* Alerts */

.alert {
    background: #fff5b1;
    border: 1px solid #f9c513;
    padding: 12px;
    border-radius: 3px;
}

/* Footer */

footer {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    color: #586069;
    border-top: 1px solid #dfe2e5;
}

/* Repository List */

.repo {
    padding: 14px;
    border-bottom: 1px solid #e1e4e8;
}

.repo:last-child {
    border-bottom: none;
}

.repo h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.repo p {
    color: #586069;
    margin-bottom: 8px;
}

/* Sidebar */

.sidebar {
    float: right;
    width: 260px;
}

.content {
    margin-right: 280px;
}

/* Avatar */

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 3px;
    border: 1px solid #d1d5da;
}

/* Utility */

.text-muted {
    color: #586069;
}

hr {
    border: 0;
    border-top: 1px solid #e1e4e8;
    margin: 20px 0;
}