sharp-wawi/www/style.css

291 lines
3.8 KiB
CSS
Raw Normal View History

2018-07-26 00:06:48 +02:00

2018-07-30 09:23:18 +02:00
body,p,div,a,a:visited {
2018-07-26 00:06:48 +02:00
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
2018-09-07 16:59:17 +02:00
font-size: 12px;
2018-07-26 00:06:48 +02:00
text-decoration: none;
2018-07-26 16:55:41 +02:00
font-style: normal;
padding: 0px;
margin: 0px;
2018-07-30 09:23:18 +02:00
display: inline;
color:black;
2018-07-26 00:06:48 +02:00
}
2018-07-26 16:55:41 +02:00
h1,h2,h3,h4,h5,h6 {
2018-07-26 00:06:48 +02:00
display: block;
}
2018-07-26 16:55:41 +02:00
div {
display: inline-block;
}
2018-09-12 21:29:58 +02:00
a, a:visited {
color: #00a5fe;
}
/*
a::before {
content: "\00bb";
}
*/
table {
border-collapse: collapse;
}
td {
padding-right: 20px;
padding-top: 5px;
padding-bottom: 3px;
2018-09-20 10:41:26 +02:00
border-bottom: 1px solid #6fb9df;
}
2018-09-12 21:29:58 +02:00
2018-09-20 10:41:26 +02:00
td + td {
border-left: 1px solid #b4d9ec;
padding-left: 5px;
2018-09-12 21:29:58 +02:00
}
thead > tr > td{
padding-bottom: 2px;
margin-bottom: 15px;
border-bottom: 1px solid black;
}
textarea {
min-width: 360px;
min-height: 100px;
}
2018-07-26 16:55:41 +02:00
.left {
float:left;
width: 230px;
margin-right: 16px;
}
2018-07-26 00:06:48 +02:00
#headbar {
position: absolute;
top: 0px;
left: 0px;
right: 0px;
height: 36px;
background-color: #00a5fe;
padding-top: 6px;
padding-bottom: 6px;
}
#infobar {
position: absolute;
top: 48px;
left: 0px;
right: 0px;
2018-07-26 16:55:41 +02:00
height: 24px;
2018-07-26 00:06:48 +02:00
}
2018-07-30 09:23:18 +02:00
#infobar * {
font-family: Courier New, Courier, monospace;
font-size: 12px;
}
#infobar > div {
display: inline-flex;
padding-left: 32px;
white-space: nowrap;
}
#infobar > div > div {
display: inline-flex;
border-left: 1px solid black;
padding-left: 10px;
padding-right: 10px;
}
2018-07-26 00:06:48 +02:00
#navigation {
position: absolute;
2018-07-26 16:55:41 +02:00
top: 72px;
2018-07-26 00:06:48 +02:00
left: 0px;
right: 0px;
height: 24px;
2018-07-26 16:55:41 +02:00
//background-color: #bfe9ff;
background-color: #00a5fe;
padding: 8px;
padding-left: 5%;
padding-right: 5%;
2018-07-26 00:06:48 +02:00
}
#pagearea {
position: absolute;
2018-07-30 09:23:18 +02:00
top: 120px;
bottom: 50px;
2018-07-26 16:55:41 +02:00
left: 3%;
right: 3%;
2018-07-30 09:23:18 +02:00
overflow:auto;
2018-07-26 16:55:41 +02:00
}
2018-07-26 00:06:48 +02:00
#headbar .title {
position: absolute;
top: 8px;
2018-07-30 09:23:18 +02:00
}
#headbar .title a {
2018-07-26 00:06:48 +02:00
color: white;
}
#headbar div {
left: 16px;
}
#headbar #pagetitle {
top: 14px;
left: 0px;
font-size: 18px;
}
#footbar {
position: absolute;
bottom: 0px;
left: 0px;
right: 0px;
height: 24px;
background-color: #00a5fe;
border: 1px dotted black;
padding-top: 6px;
padding-bottom: 6px;
padding-left: 12px;
padding-right: 12px;
}
#pagetime {
position: absolute;
right: 12px;
}
2018-07-30 09:23:18 +02:00
.box,.block{
2018-09-12 21:29:58 +02:00
display: flex;
2018-07-26 16:55:41 +02:00
padding: 5px;
}
.group {
width: 100%;
margin-top: 4px;
margin-bottom: 4px;
}
.group + .group {
border-top: 1px solid #6fb9df;
padding-top: 4px;
}
2018-07-26 00:06:48 +02:00
2018-09-12 21:29:58 +02:00
.group.column {
display: inline-block;
}
.group.column + .group.column {
border-top: none;
border-left: 1px solid #6fb9df;
padding-top: 0px;
padding-left: 4px;
}
.left .box, .left.box, .left .group, .left.group {
display: block;
}
2018-07-26 00:06:48 +02:00
.center {
text-align: center;
width: 100%;
left: 0px;
right: 0px;
}
.sub {
font-size: 80%;
}
.title {
font-size: 24px;
font-weight: bold;
}
2018-07-26 16:55:41 +02:00
#navigation * {
font-size: 14px;
}
.navigation {
width: 180px;
text-align: center;
background-color: #8fd9ff;
border: 1px solid #6fb9df;
}
2018-07-26 00:06:48 +02:00
2018-07-26 16:55:41 +02:00
#navigation > .navigation {
position: relative;
display: inline-block;
2018-07-26 00:06:48 +02:00
2018-07-26 16:55:41 +02:00
margin-left: 8px;
margin-right: 8px;
2018-07-26 00:06:48 +02:00
2018-07-26 16:55:41 +02:00
}
2018-07-26 00:06:48 +02:00
2018-07-26 16:55:41 +02:00
.navigation > a {
display: block;
width: 100%;
height: 100%;
2018-07-26 00:06:48 +02:00
2018-07-26 16:55:41 +02:00
padding: 4px;
2018-09-12 21:29:58 +02:00
color: black;
2018-07-26 16:55:41 +02:00
}
2018-07-26 00:06:48 +02:00
2018-07-26 16:55:41 +02:00
.navigation > .navigation {
position: absolute;
display: none;
top: 15px;
}
.navigation:hover > .navigation, .navigation > .navigation:hover {
display: block;
}
2018-07-26 00:06:48 +02:00
2018-09-12 21:29:58 +02:00
.table {
display: inline-flex;
flex-flow: row;
}
.table > div {
display: flex;
}
2018-07-26 00:06:48 +02:00
#wawi {
2018-07-26 16:55:41 +02:00
z-index: 1;
2018-09-12 21:29:58 +02:00
font-size: 24px;
2018-07-26 00:06:48 +02:00
}
#wawi:hover {
color: #D02020;
}