add Header

This commit is contained in:
lb
2023-05-08 15:15:43 +08:00
parent bf70872359
commit 822df97edd
14 changed files with 162 additions and 3 deletions

BIN
src/assets/bg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

BIN
src/assets/company.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

BIN
src/assets/date.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
src/assets/header.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 KiB

View File

@@ -0,0 +1,10 @@
// functions
@import "variables";
@function h($height) {
@return $height * ($actual_height / $design_height);
}
@function w($width) {
@return $width * ($actual_width / $design_width);
}

View File

@@ -0,0 +1,14 @@
// variables
// $design_width: 4480px;
$design_width: 8960px;
$design_height: 2160px;
$actual_width: 3840px;
$actual_height: 1080px;
$height: 1080px;
$default_ratio: 0.875;
// colors
$main-color: #6bf2ff;