spee.ch/public/assets/css/allStyle.css

85 lines
949 B
CSS
Raw Normal View History

2017-06-23 06:43:53 +02:00
/* Containters */
.wrapper {
margin-left: 20%;
width:60%;
}
.top-bar {
width: 100%;
margin-bottom: 2px;
padding-bottom: 2px;
border-bottom: 1px lightgrey solid;
}
.main {
float: left;
width: 75%;
margin-right: 1%;
padding-right: 1%;
border-right: 1px lightgrey solid;
margin-bottom: 5px;
}
.sidebar {
float: left;
width: 22%;
}
/* panels */
.panel {
overflow: auto;
word-wrap: break-word;
}
.col-left, .col-right {
overflow: auto;
margin: 0px;
width: 48%;
}
.col-left {
padding: 5px 10px 5px 0px;
float: left;
}
.col-right {
padding: 5px 0px 5px 10px;
float: right;
}
/* text */
a {
text-decoration: none;
}
h1 {
font-size: x-large;
}
h2 {
font-size: medium;
2017-06-23 06:48:21 +02:00
border-top: 1px #999 solid;
background-color: lightgray;
2017-06-23 06:43:53 +02:00
padding: 6px;
}
h4 {
padding: 3px;
}
.code {
font-family: monospace;
color: darkgrey;
word-wrap: break-word;
}
/* other */
.stop-float {
clear: both;
2017-06-23 21:33:09 +02:00
}
.toggle-link {
float: right;
2017-06-23 06:43:53 +02:00
}