-
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
VN Fosly
authored and
VN Fosly
committed
Aug 5, 2023
1 parent
61e5ce0
commit aba6b97
Showing
10 changed files
with
205 additions
and
93 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
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
require 'fileutils' | ||
|
||
module ServerConfig | ||
Path = { | ||
'productPath' => File.join(__dir__, 'packs'), | ||
'devPath' => File.join('app', 'build', 'packs') | ||
} | ||
end |
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 was deleted.
Oops, something went wrong.
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,58 +1,113 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> | ||
<html xmlns="http://www.w3.org/1999/xhtml"> | ||
<head> | ||
<title>Transmisser</title> | ||
<style> | ||
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Manrope:wght@300;400;500;600;700;800&display=swap'); | ||
|
||
|
||
* { | ||
box-sizing: border-box; | ||
font-family: 'Manrope', sans-serif; | ||
transition: 0.2s ease-in-out; | ||
} | ||
body { | ||
margin: 0; | ||
background-color: #020320; | ||
min-height: 100vh; | ||
} | ||
|
||
input { | ||
border: none; | ||
} | ||
.input:focus-within { | ||
border: #1926d6 solid 2px; | ||
box-shadow: 0px 0px 50px #1e2dff80; | ||
} | ||
.titleBtn { | ||
background: #020320; | ||
} | ||
.titleBtn:hover { | ||
background-color: #191b4d; | ||
} | ||
|
||
|
||
.addBtn:hover { | ||
background: rgb(42, 43, 69, 0.8); | ||
} | ||
#titlebar { | ||
background: #010220; | ||
display: flex; | ||
align-items: center; | ||
-webkit-app-region: drag; | ||
justify-content: space-between; | ||
} | ||
|
||
#main { | ||
padding: 20px; | ||
color: #fff; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<transmisser> | ||
<div id="titlebar"></div> | ||
<div id="main"></div> | ||
</transmisser> | ||
</body> | ||
|
||
<head> | ||
<title>Transmisser</title> | ||
<style> | ||
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Manrope:wght@300;400;500;600;700;800&display=swap'); | ||
|
||
|
||
* { | ||
box-sizing: border-box; | ||
font-family: 'Manrope', sans-serif; | ||
transition: 0.2s ease-in-out; | ||
} | ||
|
||
body { | ||
margin: 0; | ||
background: #020216; | ||
min-height: 100vh; | ||
} | ||
|
||
input { | ||
border: none; | ||
} | ||
|
||
#input { | ||
background: rgb(42, 43, 69, 0.3); | ||
position: relative; | ||
border: 1px solid rgb(42, 43, 69, 0.6); | ||
z-index: 20; | ||
} | ||
|
||
|
||
#input:has(#inputin:hover) > #input::before { | ||
opacity: 1; | ||
|
||
} | ||
|
||
#input::before { | ||
background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), | ||
rgba(255, 255, 255, 0.06), | ||
transparent 40%); | ||
z-index: 3; | ||
} | ||
|
||
#input::after { | ||
background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), | ||
rgba(255, 255, 255, 0.4), | ||
transparent 40%); | ||
z-index: 1; | ||
} | ||
|
||
#input::before, | ||
#input::after { | ||
border-radius: inherit; | ||
transition: 0.4s; | ||
animation-duration: 0.4s; | ||
content: ""; | ||
height: 100%; | ||
left: 0px; | ||
opacity: 0; | ||
position: absolute; | ||
top: 0px; | ||
transition: opacity 500ms; | ||
width: 100%; | ||
} | ||
|
||
|
||
#input:hover::before { | ||
opacity: 1; | ||
} | ||
|
||
#input:focus-within { | ||
border: #1926d6 solid 2px; | ||
box-shadow: 0px 0px 50px #1e2dff80; | ||
} | ||
|
||
.titleBtn { | ||
background: #020320; | ||
} | ||
|
||
|
||
.titleBtn:hover { | ||
background-color: #191b4d; | ||
} | ||
|
||
|
||
.addBtn:hover { | ||
background: rgb(42, 43, 69, 0.8); | ||
} | ||
|
||
#titlebar { | ||
display: flex; | ||
align-items: center; | ||
-webkit-app-region: drag; | ||
justify-content: space-between; | ||
} | ||
|
||
#main { | ||
padding: 20px; | ||
color: #fff; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<transmisser> | ||
<div id="titlebar"></div> | ||
<div id="main"></div> | ||
</transmisser> | ||
</body> | ||
|
||
</html> |
Oops, something went wrong.