Skip to content

Commit

Permalink
Merge pull request #15 from elderguardian/minor_frontend
Browse files Browse the repository at this point in the history
minor frontend fixes
  • Loading branch information
elderguardian authored Aug 3, 2023
2 parents 638d2e3 + f6fd7e3 commit a6119f0
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "kagerou",
"private": true,
"version": "0.0.0",
"version": "0.1.1",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
24 changes: 20 additions & 4 deletions public/style/layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,21 @@
box-sizing: border-box;
}

::selection {
background-color: rgba(140, 140, 140, 0.16);
}

h1::selection,
a::selection,
a *::selection,
img::selection {
background-color: transparent;
}

h1 {
cursor: default;
}

html {
text-rendering: optimizeLegibility;
word-break: break-word;
Expand Down Expand Up @@ -138,18 +153,19 @@ body {
align-items: center;
background: rgba(255, 255, 255, 0.1);
border-radius: 5vw;
border: 1px solid rgba(255, 255, 255, 0.1);
border: .3vw solid rgba(255, 255, 255, 0.1);
padding: 4vw;
margin: 8vw 0;
-webkit-box-shadow: 0 -8vw 30vw 0 rgba(123, 73, 167, 1);
-moz-box-shadow: 0 -8vw 30vw 0 rgba(123, 73, 167, 1);
box-shadow: 0 -8vw 30vw 0 rgba(123, 73, 167, 1);
-webkit-box-shadow: 0 -8vw 30vw 0 rgb(123, 73, 167);
-moz-box-shadow: 0 -8vw 30vw 0 rgb(123, 73, 167);
box-shadow: 0 -8vw 30vw 0 rgb(123, 73, 167);
}

#section-about img {
height: 20vw;
width: auto;
border-radius: 1vw;
border: .5vw solid #939393;
}

#section-about > div {
Expand Down

0 comments on commit a6119f0

Please sign in to comment.