mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 03:36:32 +08:00
45 lines
585 B
CSS
45 lines
585 B
CSS
body {
|
|
font-family: Arial,Helvetica,sans-serif;
|
|
background: #E8E8E8;
|
|
}
|
|
|
|
a, a:visited {
|
|
color: #4078c0;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover, a:active {
|
|
cursor: pointer;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.container {
|
|
width: 1000px;
|
|
padding: 0.5em 1em;
|
|
background-color: #f2f2f2;
|
|
}
|
|
|
|
.container:after {
|
|
content: "";
|
|
display: table;
|
|
clear: both;
|
|
}
|
|
|
|
.nav {
|
|
float: left;
|
|
width: 300px;
|
|
}
|
|
|
|
.content {
|
|
float: right;
|
|
width: 100%;
|
|
max-width: 700px;
|
|
}
|
|
|
|
.page_title {
|
|
font-weight: bold;
|
|
font-size: 22pt;
|
|
color: #bbb;
|
|
padding-left: 0.4em;
|
|
}
|