mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
33 lines
481 B
CSS
33 lines
481 B
CSS
html, body {
|
|
height: 100%;
|
|
width: 100%;
|
|
margin: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
height: 90%;
|
|
font: caption;
|
|
background-color: #F4F7F8;
|
|
}
|
|
|
|
p {
|
|
margin: 1em 2em;
|
|
}
|
|
|
|
#content {
|
|
height: 90%;
|
|
margin: 2em 2em 0 2em;
|
|
border: .5em solid #DDE4E9;
|
|
transition: background-color .2s ease-out;
|
|
}
|
|
|
|
#content[contenteditable=true] {
|
|
background-color: white;
|
|
transition: background-color .2s ease-in;
|
|
}
|
|
|
|
[contenteditable]:focus {
|
|
outline: 0px solid transparent;
|
|
}
|