diff options
Diffstat (limited to 'site/style.css')
-rw-r--r-- | site/style.css | 30 |
1 files changed, 24 insertions, 6 deletions
diff --git a/site/style.css b/site/style.css index 48d93bb..0180539 100644 --- a/site/style.css +++ b/site/style.css @@ -65,15 +65,29 @@ h3 { color: #5f819d; } +.small-window { + width: 100%; + max-width: 1080px; + height: 100%; + max-height: 607px; +} +.regular-window { + width: 70%; + max-width: 70%; + height: 100%; + max-height: 80%; + overflow: hidden; + +} .main { background-color: #191919; - margin-top: 0; - margin-bottom: 0; - margin-left: auto; - margin-right: auto; - - width: 70%; + margin-left: auto; + margin-right: auto; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + position: absolute; padding: 2%; height: 100%; @@ -81,6 +95,10 @@ h3 { border-radius: 6px; box-shadow: 0px 0px 50px black; } +.content { + overflow: scroll; + height: 80%; +} .header { text-align: center; |