diff options
Diffstat (limited to 'site/style.css')
| -rw-r--r-- | site/style.css | 65 | 
1 files changed, 43 insertions, 22 deletions
| diff --git a/site/style.css b/site/style.css index 7e5c0ee..d2cbe27 100644 --- a/site/style.css +++ b/site/style.css @@ -34,7 +34,7 @@ body {  	color: #fefefe;  	font-family: mononoki;  	font-size: 16px; -	padding: 0; +	padding: 2;  	margin: 0;  } @@ -59,6 +59,7 @@ h1 {  h2 {  	color: #b4d6d1; +    margin-top: 0;  }  h3 { @@ -67,10 +68,21 @@ h3 {  .small-window {      width: 100%; -	max-width: 1080px;      height: 100%; -	max-height: 607px;  } + +@media(width > 1080px) { +    .small-window { +        max-height: 607px; +    } +} + +@media(width > 1080px) { +    .small-window { +        max-width: 1080px; +    } +} +  .regular-window {      width: 70%;  	max-width: 70%; @@ -84,18 +96,23 @@ h3 {  	background-color: #191919;      margin-left: auto;      margin-right: auto; -    top: 50%; -    left: 50%;      transform: translate(-50%, -50%);      position: absolute; -	padding: 2%; +	padding: 3%;  	height: 100%; +    left: 50%; +    top: 50%;      border-radius: 6px;      box-shadow: 0px 0px 50px black;  } +@media(width < 70%) { +    .main { +    } +} +  .content {      overflow: auto;      height: 80%; @@ -151,32 +168,39 @@ code {  pre {  	background-color: #303030; -        white-space: pre-wrap; +    white-space: pre-wrap;  	padding: 5px; -  }  .grid { -	display: inline; +	display: grid; +    grid-template-columns: 50% 50%; +    /*a*/ +    /*grid-auto-rows: max-content;*/ +} + +.grid>div { +    padding: 0.5em;  }  .about {      width: auto;  } -.left { -    width: 45%; -    float: left; -} -.right { -    width: 45%; -    float: right; +.main-image { +    /*place-self: center;*/ +    grid-row-start: 1; +    grid-row-end: 3; +    grid-column-start: 2; +    width: auto; +  } -.image { -	width: auto; -    float: right; +.main-image>img { +    width: 60%; +    margin-left: 20%; +    margin-right: 20%;  }  ul { @@ -185,6 +209,3 @@ ul {      padding-left: 0;  } -img { -	width: 100%; -} | 
