Added overflow for #content
This commit is contained in:
parent
3d032ef2dd
commit
02d96f5ad7
|
@ -1,10 +1,6 @@
|
||||||
body {
|
body {
|
||||||
font-family: 'Courier New', Courier, monospace;
|
font-family: 'Courier New', Courier, monospace;
|
||||||
background-color: var(--bg);
|
background-color: var(--bg);
|
||||||
}
|
|
||||||
|
|
||||||
html,
|
|
||||||
body {
|
|
||||||
border-color: var(--br);
|
border-color: var(--br);
|
||||||
color: var(--fg);
|
color: var(--fg);
|
||||||
}
|
}
|
||||||
|
@ -21,6 +17,7 @@ a {
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
margin-top: 10px;
|
||||||
padding-top: 25px;
|
padding-top: 25px;
|
||||||
padding-bottom: 25px;
|
padding-bottom: 25px;
|
||||||
background-color: var(--bg-header);
|
background-color: var(--bg-header);
|
||||||
|
@ -32,8 +29,12 @@ a {
|
||||||
#content {
|
#content {
|
||||||
min-width: 400px;
|
min-width: 400px;
|
||||||
max-width: 900px;
|
max-width: 900px;
|
||||||
|
max-height: 100%;
|
||||||
|
overflow: auto;
|
||||||
width: 65%;
|
width: 65%;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
padding-left: 10px;
|
||||||
|
padding-right: 10px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
|
|
Loading…
Reference in New Issue