Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
vys69 committed Sep 16, 2024
1 parent 8e081b2 commit 1c221e3
Show file tree
Hide file tree
Showing 8 changed files with 304 additions and 180 deletions.
16 changes: 16 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"dependencies": {
"@sveltejs/kit": "^2.5.26",
"sirv-cli": "^2.0.0",
"svelte-device-info": "^1.0.6",
"vercel": "^37.4.2"
}
}
67 changes: 67 additions & 0 deletions public/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ body {
font-family: "Pixelated MS Sans Serif", Arial !important;
-webkit-font-smoothing: none;
font-smooth: never;
overflow-y: hidden;
}

.xp-footer-middle{
Expand Down Expand Up @@ -70,3 +71,69 @@ button:not(:disabled):active {
button:focus {
border-color: #666;
}

/*window*/
.window {
box-shadow:
inset -1px -1px #000000,
inset 1px 1px #000,
inset -2px -2px #000,
inset 2px 2px #000,
inset -3px -3px #000,
inset 3px 3px #000 !important;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
padding: 0 0 3px;
-webkit-font-smoothing: antialiased;
transition: transform 0.3s ease-out;
}

.window:active {
transition: none;
}

/* .window:hover {
transform: skew(1deg, -1deg);
} */

/*title bar*/
.title-bar {
cursor: move;
background-image: url("/titlebar.jpg") !important;
background-size: cover !important;
background-position: 80% !important;
background-attachment: fixed !important;
border-top: 1px solid #000 !important;
border-left: 1px solid #000 !important;
border-right: 1px solid #000 !important;
}


.title-bar > * {
position: relative;
z-index: 2;
}

.title-bar-controls button {
filter: saturate(0) brightness(0.7) contrast(2.3) !important;
}

/*button*/
.xp-button {
color: black;
font-weight: normal;
background-color: #ece9d8;
border: 1px solid #003c74;
box-shadow:
inset -1px -1px #ffffff,
inset 1px 1px #ffffff,
inset -2px -2px #aca899,
inset 2px 2px #dfcfc3;
padding: 3px 5px;
min-width: 75px;
text-align: center;
}

.project-link {
text-decoration: none;
}
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<title>gwim | hello world</title>

<link rel='icon' type='image/png' href='favi.png'>
<link rel='stylesheet' href='./global.css'>
<link rel='stylesheet' href='./global.css'>
<link rel='stylesheet' href='/build/bundle.css'>

<script defer src='/build/bundle.js'></script>
Expand Down
2 changes: 1 addition & 1 deletion public/xp.css

Large diffs are not rendered by default.

Loading

0 comments on commit 1c221e3

Please sign in to comment.