71 lines
993 B
CSS
71 lines
993 B
CSS
|
a {
|
||
|
text-decoration: none;
|
||
|
color: #333;
|
||
|
}
|
||
|
|
||
|
a:hover {
|
||
|
color: #2672ec !important;
|
||
|
text-decoration: none !important;
|
||
|
}
|
||
|
|
||
|
/* ----------- FONTS AWESOME ----------- */
|
||
|
.fa-right {
|
||
|
margin-right: 5px;
|
||
|
}
|
||
|
|
||
|
/* ----------- HEAD ----------- */
|
||
|
#head {
|
||
|
overflow: auto;
|
||
|
border-top: 10px #f1f1f1 solid;
|
||
|
border-bottom: 1px solid #f1f1f1;
|
||
|
padding: 10px 0;
|
||
|
}
|
||
|
|
||
|
#head h1 {
|
||
|
font-weight: normal;
|
||
|
float:left;
|
||
|
margin-left: 30px;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
font-size: 1.3em;
|
||
|
}
|
||
|
|
||
|
#head ul {
|
||
|
float: right;
|
||
|
margin: 0;
|
||
|
list-style: none;
|
||
|
}
|
||
|
|
||
|
#head .navbar {
|
||
|
margin: 0;
|
||
|
padding: 0 30px;
|
||
|
font-size: 0.9em;
|
||
|
}
|
||
|
|
||
|
/* ----------- SIDEBAR ----------- */
|
||
|
#sidebar {
|
||
|
overflow: auto;
|
||
|
margin: 20px;
|
||
|
}
|
||
|
|
||
|
#sidebar ul {
|
||
|
list-style-type: none;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
#sidebar li {
|
||
|
border-bottom: 1px solid #eee;
|
||
|
}
|
||
|
|
||
|
/* ----------- CONTENT ----------- */
|
||
|
#content {
|
||
|
overflow: auto;
|
||
|
margin: 20px;
|
||
|
}
|
||
|
|
||
|
h2.title {
|
||
|
font-weight: normal;
|
||
|
}
|
||
|
|