mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
e060130655
closes #76 closes #73
43 lines
512 B
CSS
Executable File
43 lines
512 B
CSS
Executable File
.main {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
|
|
display: grid;
|
|
grid-template-columns: 220px 1fr;
|
|
}
|
|
|
|
.left-thing {
|
|
background-color: gray;
|
|
padding: 20px;
|
|
color: white;
|
|
}
|
|
|
|
.left-thing button {
|
|
width: 100%;
|
|
}
|
|
|
|
.right-thing {
|
|
padding: 20px;
|
|
overflow: auto;
|
|
}
|
|
|
|
/* Message widget */
|
|
.message .author {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.message {
|
|
width: 400px;
|
|
background-color: lightblue;
|
|
margin: 10px 5px;
|
|
border-radius: 5px;
|
|
padding: 5px;
|
|
}
|
|
|
|
.remove {
|
|
float: right;
|
|
}
|