-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
91 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,21 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap'); | ||
@import url('root.css'); | ||
@import url('animations.css'); | ||
@import url('table.css'); | ||
|
||
:root{ | ||
--custom-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; | ||
--header-bg: rgb(28, 33, 40); | ||
--header-mid-bg: rgba(38, 51, 70, 0.801); | ||
--border-bg: rgba(223, 223, 223, 0.34); | ||
--border-pix: 0.5px; | ||
--blur-filter-hard: 0.55em; | ||
|
||
/*header global variables*/ | ||
--header-height: 3.5em; | ||
--header-bg-color-light-1: rgb(192, 192, 192); | ||
--header-bg-color-light-2: rgba(164, 201, 255, 0.801); | ||
--header-background-color-light: linear-gradient(to right, var(--header-bg-color-light-1), var(--header-bg-color-light-2), var(--header-bg-color-light-1)); | ||
--header-bg-color-dark-1: rgb(28, 33, 40); | ||
--header-bg-color-dark-2: rgba(38, 51, 70, 0.801); | ||
--header-background-color-dark: linear-gradient(to right, var(--header-bg-color-dark-1), var(--header-bg-color-dark-2), var(--header-bg-color-dark-1)); | ||
|
||
|
||
--link-txt-color: rgb(100, 100, 100); | ||
--link-txt-color-hover: #2997ff; | ||
|
||
--area-pad: 1.5em; | ||
|
||
--gear-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-gear-fill' viewBox='0 0 16 16'%3E%3Cpath d='M9.405 1.05c-.413-1.4-2.397-1.4-2.81 0l-.1.34a1.464 1.464 0 0 1-2.105.872l-.31-.17c-1.283-.698-2.686.705-1.987 1.987l.169.311c.446.82.023 1.841-.872 2.105l-.34.1c-1.4.413-1.4 2.397 0 2.81l.34.1a1.464 1.464 0 0 1 .872 2.105l-.17.31c-.698 1.283.705 2.686 1.987 1.987l.311-.169a1.464 1.464 0 0 1 2.105.872l.1.34c.413 1.4 2.397 1.4 2.81 0l.1-.34a1.464 1.464 0 0 1 2.105-.872l.31.17c1.283.698 2.686-.705 1.987-1.987l-.169-.311a1.464 1.464 0 0 1 .872-2.105l.34-.1c1.4-.413 1.4-2.397 0-2.81l-.34-.1a1.464 1.464 0 0 1-.872-2.105l.17-.31c.698-1.283-.705-2.686-1.987-1.987l-.311.169a1.464 1.464 0 0 1-2.105-.872zM8 10.93a2.929 2.929 0 1 1 0-5.86 2.929 2.929 0 0 1 0 5.858z'/%3E%3C/svg%3E"); | ||
|
@@ -26,21 +30,30 @@ | |
body{ | ||
margin: 0; | ||
padding: 0; | ||
font-family: var(--custom-font); | ||
font-family: var(--global-custom-font); | ||
overflow: hidden; | ||
} | ||
|
||
|
||
|
||
header{ | ||
height: 3.5em; | ||
background: linear-gradient(to right, var(--header-bg), var(--header-mid-bg), var(--header-bg)); | ||
border-bottom: var(--border-pix) solid var(--border-bg); | ||
backdrop-filter: blur(var(--blur-filter-hard)); | ||
height: var(--header-height); | ||
backdrop-filter: var(--global-container-backdrop-filter); | ||
justify-content: space-between; | ||
align-items: center; | ||
position: relative; | ||
transition: background var(--global-transition-background-time); | ||
border-bottom: var(--global-container-border-width) solid var(--global-container-border-color); | ||
} | ||
header[theme = "dark"]{ | ||
background: var(--header-background-color-dark); | ||
} | ||
header[theme = "light"]{ | ||
background: var(--header-background-color-light); | ||
} | ||
|
||
|
||
|
||
|
||
.canvas{ | ||
position: fixed; | ||
top: 0; | ||
|
@@ -179,7 +192,7 @@ summary:hover{ | |
|
||
|
||
label, select, input{ | ||
font-size: 0.82em; | ||
font-size: 0.84em; | ||
} | ||
select, input{ | ||
font-weight: 400; | ||
|
@@ -196,7 +209,7 @@ select, #requestDate{ | |
transition: border-color 0.25s | ||
} | ||
#requestDate{ | ||
font-size: 0.9em; | ||
font-size: 1em; | ||
} | ||
select:hover, #requestDate:hover{ | ||
border-color:rgb(148, 191, 255); | ||
|
@@ -254,7 +267,6 @@ select:hover, #requestDate:hover{ | |
width: 18px; | ||
} | ||
.menu-button:hover{ | ||
cursor: pointer; | ||
background-color: rgba(104, 120, 138, 0.568); | ||
} | ||
.menu-button:hover > svg{ | ||
|
@@ -311,19 +323,13 @@ select:hover, #requestDate:hover{ | |
gap: 17px; | ||
align-items: center; | ||
} | ||
.zoom-tool{ | ||
background-color: rgb(206, 206, 206); | ||
border: none; | ||
border-radius: 50%; | ||
gap: 1px; | ||
} | ||
.zoom-button{ | ||
width: 42px; | ||
height: 38px; | ||
justify-content: center; | ||
align-items: center; | ||
transition: background-color 0.3s, box-shadow 0.3s 0.001s; | ||
background-color: rgb(247, 245, 245); | ||
background-color: #f5f5f5ed; | ||
padding: 8px; | ||
border: none; | ||
} | ||
|
@@ -368,7 +374,7 @@ select:hover, #requestDate:hover{ | |
height: 0; | ||
border-left: 5px solid transparent; | ||
border-right: 5px solid transparent; | ||
border-bottom: 18px solid #00dce4; | ||
border-bottom: 18px solid #2a77ca; | ||
transform: rotate(180deg); | ||
} | ||
#compass:hover{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap'); | ||
|
||
/*root global variables*/ | ||
:root{ | ||
|
||
--global-transition-background-time: 0.3s; | ||
--global-container-border-color: rgba(223, 223, 223, 0.34); | ||
--global-container-border-width: 0.5px; | ||
--global-blur-filter: 0.55em; | ||
--global-container-backdrop-filter: blur(var(--global-blur-filter)); | ||
--global-custom-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters