Lev
2 years ago
commit
fa4cab150c
5 changed files with 475 additions and 0 deletions
Binary file not shown.
@ -0,0 +1,13 @@
|
||||
<html> |
||||
<head> |
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script> |
||||
<link rel="stylesheet" type="text/css" href="./style.css"> |
||||
<title>Agorata</title> |
||||
</head> |
||||
<body> |
||||
<!-- Load landing.svg --> |
||||
<div id="landing-div"> |
||||
<object id="landing-svg" type="image/svg+xml" data="./landing.svg"></object> |
||||
</div> |
||||
</body> |
||||
</html> |
After Width: | Height: | Size: 53 KiB |
@ -0,0 +1,22 @@
|
||||
#landing-svg { |
||||
position: absolute; |
||||
top: min(0rem, min(50vh - 100vw * 120 / 275, 50vh - 100vh * 185 / 250)); |
||||
// top: max(0rem, min(50vh - 100vw * 230 / 275, 50vh - 100vh * 230 / 250)); |
||||
// left: max(0rem, min(50vw - 100vw * 0.836, 50vw - 100vh * 0.91)); |
||||
left: min(0rem, min(50vw - 100vw * 120/275, 50vw - 100vh * 140/250)); |
||||
width: max(100vw, 100vh * 1.1); |
||||
height: max(100vh, 100vw * 0.91); |
||||
} |
||||
|
||||
@font-face { |
||||
font-family: Circe; |
||||
src: url("fonts/CRC35.otf") format("opentype"); |
||||
} |
||||
|
||||
#landing-div { |
||||
// transform: scale(min(100vw / 275mm, 100vh / 250mm)) translate(50vw - min(100vw / 275mm, 100vh / 255mm) * 230mm, 50vh - min(100vw / 275mm, 100vh / 250mm) * 185mm); |
||||
} |
||||
|
||||
#whitepaper { |
||||
cursor: pointer; |
||||
} |
Binary file not shown.
Loading…
Reference in new issue